nix: fix incramental flags, again

I'm blind *and* stupid. Cheers!
This commit is contained in:
NotAShelf
2024-10-31 23:38:17 +03:00
parent 0109732881
commit 6a9547bb10
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 = {