forked from Mirrors/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
403 B
Nix
16 lines
403 B
Nix
{ stdenv, pkgs }:
|
|
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
(rust-bin.nightly.latest.rust.override { extensions = ["rust-src"]; })
|
|
lld_10
|
|
stdenv.cc.cc.lib
|
|
# pkg-config
|
|
];
|
|
RUSTFLAGS = "-C link-arg=-fuse-ld=lld -C target-cpu=native";
|
|
RUST_BACKTRACE = "1";
|
|
# https://github.com/rust-lang/rust/issues/55979
|
|
LD_LIBRARY_PATH="${stdenv.cc.cc.lib}/lib64:$LD_LIBRARY_PATH";
|
|
}
|
|
|