mirror of
https://github.com/RGBCube/crash
synced 2025-07-27 16:37:45 +00:00
fix: replace ./. to speed up nix evaluation
This commit is contained in:
parent
7849872b30
commit
f54d460ffe
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ in stdenvNoCC.mkDerivation {
|
||||||
name = "crash";
|
name = "crash";
|
||||||
version = lib.head (lib.strings.match ''.*\.version = "([^"]*)".*'' (lib.readFile ./build.zig.zon));
|
version = lib.head (lib.strings.match ''.*\.version = "([^"]*)".*'' (lib.readFile ./build.zig.zon));
|
||||||
|
|
||||||
src = ./.;
|
src = builtins.path { path = ./.; name = "source"; };
|
||||||
|
|
||||||
dontCheck = true;
|
dontCheck = true;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue