mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 02:47:45 +03:00
12 lines
217 B
Nix
12 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";
|
|
}
|
|
|