fetchgx: support hash attribute

This commit is contained in:
nicoo 2024-09-15 21:47:29 +00:00
parent 45b95421fd
commit b5aefcd40a

View File

@ -1,30 +1,31 @@
{ stdenvNoCC, gx, gx-go, go, cacert }:
{ lib, stdenvNoCC, gx, gx-go, go, cacert }:
{ name, src, sha256 }:
lib.fetchers.withNormalizedHash { } (
{ name, src, outputHash, outputHashAlgo }:
stdenvNoCC.mkDerivation {
name = "${name}-gxdeps";
inherit src;
stdenvNoCC.mkDerivation {
name = "${name}-gxdeps";
inherit src;
nativeBuildInputs = [ cacert go gx gx-go ];
nativeBuildInputs = [ cacert go gx gx-go ];
outputHashAlgo = "sha256";
outputHashMode = "recursive";
outputHash = sha256;
inherit outputHash outputHashAlgo;
outputHashMode = "recursive";
dontConfigure = true;
doCheck = false;
doInstallCheck = false;
dontConfigure = true;
doCheck = false;
doInstallCheck = false;
buildPhase = ''
export GOPATH=$(pwd)/vendor
mkdir -p vendor
gx install
'';
buildPhase = ''
export GOPATH=$(pwd)/vendor
mkdir -p vendor
gx install
'';
installPhase = ''
mv vendor $out
'';
installPhase = ''
mv vendor $out
'';
preferLocalBuild = true;
}
preferLocalBuild = true;
}
)