-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathflake.nix
45 lines (39 loc) · 1.25 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
description = "libflightplan";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
zig.url = "github:roarkanize/zig-overlay";
# Used for shell.nix
flake-compat = { url = github:edolstra/flake-compat; flake = false; };
# Dependencies we track using flake.lock
zig-libxml2-src = {
url = "https://github.com/mitchellh/zig-libxml2.git";
flake = false;
submodules = true;
type = "git";
ref = "main";
};
};
outputs = { self, nixpkgs, flake-utils, ... }@inputs:
let
overlays = [
# Our repo overlay
(import ./nix/overlay.nix)
# Other overlays
(final: prev: {
zigpkgs = inputs.zig.packages.${prev.system};
zig-libxml2-src = inputs.zig-libxml2-src;
})
];
# Our supported systems are the same supported systems as the Zig binaries
systems = builtins.attrNames inputs.zig.packages;
in flake-utils.lib.eachSystem systems (system:
let pkgs = import nixpkgs { inherit overlays system; };
in rec {
devShell = pkgs.devShell;
packages.libflightplan = pkgs.libflightplan;
defaultPackage = packages.libflightplan;
}
);
}