mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 02:47:45 +03:00
12 lines
280 B
Nix
12 lines
280 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
(rust-bin.nightly.latest.rust.override { extensions = ["rust-src"]; })
|
|
lld_10
|
|
# pkgconfig
|
|
];
|
|
RUSTFLAGS = "-C link-arg=-fuse-ld=lld -C target-cpu=native";
|
|
RUST_BACKTRACE = "1";
|
|
}
|
|
|