Skip to content

Commit 279a413

Browse files
committed
Add libkrb5 native dependency to libgssapi-sys
This seems to have bitrotted quite recently...
1 parent e14cc79 commit 279a413

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

default.nix

+6-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,12 @@
1515
};
1616
krb5-sys = attrs: {
1717
nativeBuildInputs = [ pkgs.pkg-config ];
18-
buildInputs = [ (pkgs.enableDebugging pkgs.krb5) ];
18+
buildInputs = [ pkgs.krb5 ];
19+
LIBCLANG_PATH = "${pkgs.libclang.lib}/lib";
20+
BINDGEN_EXTRA_CLANG_ARGS = "-I${pkgs.glibc.dev}/include -I${pkgs.clang.cc.lib}/lib/clang/${pkgs.lib.getVersion pkgs.clang.cc}/include";
21+
};
22+
libgssapi-sys = attrs: {
23+
buildInputs = [ pkgs.krb5 ];
1924
LIBCLANG_PATH = "${pkgs.libclang.lib}/lib";
2025
BINDGEN_EXTRA_CLANG_ARGS = "-I${pkgs.glibc.dev}/include -I${pkgs.clang.cc.lib}/lib/clang/${pkgs.lib.getVersion pkgs.clang.cc}/include";
2126
};

0 commit comments

Comments
 (0)