mirror of
https://github.com/n0-computer/noq.git
synced 2026-09-18 09:15:37 +00:00
10 lines
211 B
Nix
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
|
|
'';
|
|
}
|