mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 01:16:18 +04:00
13 lines
217 B
Nix
13 lines
217 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
rust-bin.nightly.latest.rust
|
|
lld_10
|
|
# pkgconfig
|
|
];
|
|
RUSTFLAGS = "-C link-arg=-fuse-ld=lld";
|
|
RUST_BACKTRACE = "1";
|
|
}
|
|
|