1
Fork 0
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:
bivsk 2025-06-06 00:29:13 -04:00
parent 7849872b30
commit f54d460ffe
No known key found for this signature in database

View file

@ -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;