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.
1 parent 3fb3eac commit 7e35784Copy full SHA for 7e35784
shell.nix
@@ -9,7 +9,7 @@ pkgs.mkShell {
9
git
10
mypy
11
neovim
12
- # rustup # error on Linux: /lib64/libc.so.6: version `GLIBC_2.14' not found
+ cargo
13
rust-analyzer
14
tmux
15
vim-vint
@@ -21,6 +21,9 @@ pkgs.mkShell {
21
])
22
++ stdenv.lib.optionals stdenv.isDarwin (with pkgs.darwin.apple_sdk.frameworks; [
23
CoreServices
24
+ ])
25
+ ++ stdenv.lib.optionals stdenv.isLinux (with pkgs; [
26
+ cargo-release # build error on macOS: "iconv.h" not found.
27
]);
28
29
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-framework CoreFoundation";
0 commit comments