File tree Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -20,18 +20,10 @@ in pkgs.mkShell rec {
20
20
];
21
21
22
22
# derivation runtime dependencies
23
- buildInputs = pkgs.lib.concatMap (crate: crate.buildInputs) cargoDependencySet ++ [ pkgs.libz ] ;
23
+ buildInputs = pkgs.lib.concatMap (crate: crate.buildInputs) cargoDependencySet;
24
24
25
25
# build time dependencies
26
26
nativeBuildInputs = pkgs.lib.concatMap (crate: crate.nativeBuildInputs) cargoDependencySet ++ (with pkgs; [
27
- # specific to secret-operator but should be discovered via crate2nix, but
28
- # otherwise, we could include an operator-specific nix import for any extras
29
- pkg-config
30
- clang
31
- openssl
32
- protobuf
33
- krb5
34
-
35
27
git
36
28
yq-go
37
29
jq
@@ -49,4 +41,5 @@ in pkgs.mkShell rec {
49
41
]);
50
42
51
43
LIBCLANG_PATH = "${pkgs.libclang.lib}/lib";
44
+ BINDGEN_EXTRA_CLANG_ARGS = "-I${pkgs.glibc.dev}/include -I${pkgs.clang}/resource-root/include";
52
45
}
You can’t perform that action at this time.
0 commit comments