-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathflake.nix
78 lines (71 loc) · 2.16 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
{
description = "Nix hash collection";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
flake-compat.url = "github:edolstra/flake-compat";
queued-build-hook.url = "github:JulienMalka/queued-build-hook/postbuildscript";
};
outputs =
inputs@{
nixpkgs,
flake-utils,
queued-build-hook,
...
}:
(flake-utils.lib.eachSystem
[
"x86_64-linux"
"aarch64-linux"
]
(
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
rec {
packages = rec {
utils = pkgs.callPackage ./utils { };
web = pkgs.python3.pkgs.callPackage ./backend.nix { };
default = utils;
};
checks.packages.utils = packages.utils;
devShells.default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
rustc
cargo
gcc
pkg-config
];
buildInputs = [
(pkgs.python3.withPackages (ps: [
ps.fastapi
ps.uvicorn
ps.sqlalchemy
ps.pydantic
]))
pkgs.jq
pkgs.rust-analyzer
pkgs.openssl
(pkgs.nixVersions.git.overrideAttrs(a: {
# Should be generalized, documented, tested and upstreamed
# similar to https://github.com/NixOS/nix/pull/12044
patches = a.patches ++ [ ./utils/expose_apis.patch ];
# tests/functional/repl.sh.test is failing in CI
doInstallCheck = system == "x86_64-linux";
}))
pkgs.nlohmann_json
pkgs.libsodium
pkgs.boost
pkgs.rustfmt
];
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
};
}
)
)
// {
nixosModules.hash-collection = import ./utils/nixos/module.nix queued-build-hook.nixosModules.queued-build-hook;
nixosModules.hash-collection-server = import ./web/nixos/module.nix;
};
}