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.
2 parents 0972fd9 + 43e5359 commit 325bb43Copy full SHA for 325bb43
src/tools/nix-dev-shell/shell.nix
@@ -14,6 +14,7 @@ pkgs.mkShell {
14
packages = [
15
pkgs.git
16
pkgs.nix
17
+ pkgs.glibc.out
18
pkgs.glibc.static
19
x
20
# Get the runtime deps of the x wrapper
@@ -23,5 +24,7 @@ pkgs.mkShell {
23
24
# Avoid creating text files for ICEs.
25
RUSTC_ICE = 0;
26
SSL_CERT_FILE = cacert;
27
+ # cargo seems to dlopen libcurl, so we need it in the ld library path
28
+ LD_LIBRARY_PATH = "${pkgs.lib.makeLibraryPath [pkgs.stdenv.cc.cc.lib pkgs.curl]}";
29
};
30
}
0 commit comments