Files
noq/shell.nix
T
2018-10-02 21:19:49 +02:00

10 lines
211 B
Nix

with import <nixpkgs> { };
in stdenv.mkDerivation {
name = "quicr";
buildInputs = with pkgs; [ rustChannels.stable.rust ];
shellHook = ''
export CARGO_INCREMENTAL=1
export RUST_BACKTRACE=1
'';
}