-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
80 lines (73 loc) · 1.89 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
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
naersk = {
url = "github:nix-community/naersk";
inputs.nixpkgs.follows = "nixpkgs";
};
utils = {
url = "github:numtide/flake-utils";
};
fenix = {
url = "github:nix-community/fenix";
#inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
inputs@{ self
, nixpkgs
, naersk
, utils
, fenix
, ...
}:
utils.lib.eachSystem [ "x86_64-linux" "aarch64-linux" ]
(system:
let
pkgs = nixpkgs.legacyPackages.${system};
toolchain = with fenix.packages.${system}; combine [
latest.cargo
latest.rustc
];
bahn-bingo-frontend = pkgs.callPackage ./pkgs/frontend.nix {};
in
rec {
checks = packages;
packages = {
bahn-bingo-frontend = bahn-bingo-frontend;
default = bahn-bingo-frontend;
};
#devShells.default = pkgs.mkShell {
# nativeBuildInputs = (with packages.bahn-bingo-backend; nativeBuildInputs ++ buildInputs);
#};
}
) // {
overlays.default = final: prev: {
inherit (self.packages.${prev.system}) bahn-bingo-frontend;
};
nixosModules = rec {
default = bahn-bingo-backend;
bahn-bingo-backend = 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;
};
}