build(nix): fix devshell

This commit is contained in:
Yusuf Bera Ertan 2023-02-25 07:06:30 +03:00
parent e5af0f1d49
commit 309735aa2d
No known key found for this signature in database
GPG key ID: 1D8F8FAF2294D6EA
2 changed files with 6 additions and 4 deletions

View file

@ -120,9 +120,11 @@
else pkgs.clangStdenv;
rustFlagsEnv =
if stdenv.isLinux
then "$RUSTFLAGS\" -C link-arg=-fuse-ld=lld -C target-cpu=native -Clink-arg=-Wl,--no-rosegment\""
then ''$RUSTFLAGS -C link-arg=-fuse-ld=lld -C target-cpu=native -Clink-arg=-Wl,--no-rosegment''
else "$RUSTFLAGS";
in {
# by default NCI adds rust-analyzer component, but helix toolchain doesn't have rust-analyzer
nci.toolchains.shell.components = ["rust-src" "rustfmt" "clippy"];
nci.projects."helix-project".relPath = "";
nci.crates."helix-term" = {
overrides = {