Skip to content

Commit

Permalink
Added zlib in suggested nix-shell environment script
Browse files Browse the repository at this point in the history
  • Loading branch information
m-rph committed Mar 3, 2024
1 parent fbea746 commit dda969b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/building/suggested.md
Original file line number Diff line number Diff line change
Expand Up @@ -282,10 +282,14 @@ pkgs.mkShell {
binutils cmake ninja pkg-config python3 git curl cacert patchelf nix
];
buildInputs = with pkgs; [
openssl glibc.out glibc.static
openssl glibc.out glibc.static zlib
];
# Avoid creating text files for ICEs.
RUSTC_ICE = "0";
shellHook = ''
export LD_LIBRARY_PATH="${pkgs.lib.makeLibraryPath buildInputs}:$LD_LIBRARY_PATH"
'';
}
```

Expand Down

0 comments on commit dda969b

Please sign in to comment.