mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 02:47:45 +03:00
Add a nix flake with the development environment.
This commit is contained in:
parent
22e1692adc
commit
f1539cc866
5 changed files with 125 additions and 0 deletions
12
shell.nix
Normal file
12
shell.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ 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";
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue