Add a nix flake with the development environment.

This commit is contained in:
Blaž Hrastnik 2021-01-19 15:54:51 +09:00
parent 22e1692adc
commit f1539cc866
5 changed files with 125 additions and 0 deletions

12
shell.nix Normal file
View 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";
}