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.
23 lines
522 B
Nix
23 lines
522 B
Nix
{ lib, stdenv, pkgs }:
|
|
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
(rust-bin.stable.latest.default.override { extensions = ["rust-src"]; })
|
|
lld_10
|
|
lldb
|
|
# pythonPackages.six
|
|
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 = lib.makeLibraryPath (with pkgs; [
|
|
stdenv.cc.cc.lib
|
|
]);
|
|
|
|
shellHook = ''
|
|
export HELIX_RUNTIME=$PWD/runtime
|
|
'';
|
|
}
|