We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9aca971 commit d206226Copy full SHA for d206226
1 file changed
nix/crane.nix
@@ -5,7 +5,7 @@
5
...
6
}:
7
let
8
- inherit (pkgs) cacert;
+ inherit (pkgs) cacert rust-jemalloc-sys;
9
10
unfilteredRoot = ../.; # TODO: decouple with filepath
11
src = lib.fileset.toSource {
@@ -15,12 +15,16 @@ let
15
(lib.fileset.maybeMissing (unfilteredRoot + "/tests"))
16
];
17
};
18
+
19
commonArgs = {
20
inherit src;
21
22
strictDeps = true;
23
24
nativeBuildInputs = [ cacert ];
25
26
+ buildInputs = [ rust-jemalloc-sys ];
27
28
doCheck = false; # Test separately with cargo-nextest
29
30
0 commit comments