blob: 165b386e89ef0ca45facf7c6511b0549b8961015 (
plain) (
blame)
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
|
{
inputs = {
flake-utils = {
type = "github";
owner = "numtide";
repo = "flake-utils";
ref = "master";
};
naersk = {
type = "github";
owner = "nmattia";
repo = "naersk";
ref = "master";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, flake-utils, naersk }: let
supportedSystems = ["aarch64-linux" "x86_64-linux"];
forAllSystems = f: flake-utils.lib.eachSystem supportedSystems f;
in {
nixosModules.default = import ./configuration.nix self;
} // forAllSystems (system: let
pkgs = nixpkgs.legacyPackages.${system};
in {
packages = {
kittybox = pkgs.callPackage ./kittybox.nix {
naersk = naersk.lib.${system};
};
default = self.packages.${system}.kittybox;
};
checks = {
kittybox = self.packages.${system}.kittybox;
distributed-test = pkgs.nixosTest (import ./distributed-test.nix self);
nixos-test = pkgs.nixosTest (import ./smoke-test.nix self);
dockerContainer = pkgs.callPackage ./docker.nix {
inherit (self.packages.${system}) kittybox;
rev = self.rev or "development";
inherit (self) lastModifiedDate;
};
};
devShells.default = pkgs.mkShell {
name = "rust-dev-shell";
nativeBuildInputs = with pkgs; [
# required for tokio-console's console-subscriber
pkg-config protobuf
# required for httpmock, not actually used in the release
openssl.dev zlib
xh systemfd tokio-console
cargo-watch cargo-edit cargo-outdated
rustc cargo rust-analyzer clippy
];
};
});
}
|