Rollup merge of #146060 - WaffleLapkin:fixup-nix-dev-shell-again, r=Noratrieb

fixup nix dev shell again

r? Noratrieb
This commit is contained in:
Stuart Cook
2025-09-01 17:35:04 +10:00
committed by GitHub
+3
View File
@@ -14,6 +14,7 @@ pkgs.mkShell {
packages = [
pkgs.git
pkgs.nix
pkgs.glibc.out
pkgs.glibc.static
x
# Get the runtime deps of the x wrapper
@@ -23,5 +24,7 @@ pkgs.mkShell {
# Avoid creating text files for ICEs.
RUSTC_ICE = 0;
SSL_CERT_FILE = cacert;
# cargo seems to dlopen libcurl, so we need it in the ld library path
LD_LIBRARY_PATH = "${pkgs.lib.makeLibraryPath [pkgs.stdenv.cc.cc.lib pkgs.curl]}";
};
}