Merge pull request #196 from NotAShelf/master

nix: fix incramental flags, again
This commit is contained in:
raf
2024-11-01 07:04:25 +00:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -70,7 +70,7 @@ in
then pname
else null;
CARGO_BUILD_INCREMENTAL = 0;
CARGO_BUILD_INCREMENTAL = "false";
RUST_BACKTRACE = "full";
postInstall = ''

View File

@@ -60,7 +60,7 @@ in
cargoBuildFlags = ["-p ${name}"];
buildAndTestSubdir = "plugins/${name}";
CARGO_BUILD_INCREMENTAL = 0;
CARGO_BUILD_INCREMENTAL = "false";
RUST_BACKTRACE = "full";
meta = {