-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathflake.nix
85 lines (77 loc) · 2.18 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
naersk = {
url = "github:nix-community/naersk";
inputs.nixpkgs.follows = "nixpkgs";
};
fenix = {
url = "github:nix-community/fenix";
};
utils = {
url = "github:numtide/flake-utils";
};
};
outputs = { self, nixpkgs, naersk, fenix, utils, ... }:
utils.lib.eachDefaultSystem
(system:
let
pkgs = nixpkgs.legacyPackages.${system};
toolchain = with fenix.packages.${system}; combine [
latest.cargo
latest.rustc
];
package = pkgs.callPackage ./derivation.nix {
buildPackage = (naersk.lib.${system}.override {
cargo = toolchain;
rustc = toolchain;
}).buildPackage;
};
in
rec {
checks = packages;
packages = {
data-accumulator = package;
default = package;
docs = (pkgs.nixosOptionsDoc {
options = (nixpkgs.lib.nixosSystem {
inherit system;
modules = [ self.nixosModules.default ];
}).options.TLMS;
}).optionsCommonMark;
};
devShells.default = pkgs.mkShell {
nativeBuildInputs = (with packages.data-accumulator; buildInputs ++ nativeBuildInputs);
};
}
) // {
overlays.default = final: prev: {
inherit (self.packages.${prev.system})
data-accumulator;
};
nixosModules = rec {
default = data-accumulator;
data-accumulator = import ./nixos-module;
};
hydraJobs =
let
hydraSystems = [
"x86_64-linux"
"aarch64-linux"
];
in
builtins.foldl'
(hydraJobs: system:
builtins.foldl'
(hydraJobs: pkgName:
nixpkgs.lib.recursiveUpdate hydraJobs {
${pkgName}.${system} = self.packages.${system}.${pkgName};
}
)
hydraJobs
(builtins.attrNames self.packages.${system})
)
{ }
hydraSystems;
};
}