Use pkgs.fetchurl instead of implicit builtins.fetchurl
We do not want or need these downloads at eval time, and it breaks eval/builds in memory-constrained environments.
This commit is contained in:
@@ -19,7 +19,7 @@ let
|
||||
runHook postInstall
|
||||
'';
|
||||
nativeBuildInputs = [ pkgs.unzip ];
|
||||
src = fetchurl ({
|
||||
src = pkgs.fetchurl ({
|
||||
url = url;
|
||||
} // (convertHash checksum));
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user