1 { lib, stdenvNoCC, gx, gx-go, go, cacert }:
3 lib.fetchers.withNormalizedHash { } (
4 { name, src, outputHash, outputHashAlgo }:
6 stdenvNoCC.mkDerivation {
7 name = "${name}-gxdeps";
10 nativeBuildInputs = [ cacert go gx gx-go ];
12 inherit outputHash outputHashAlgo;
13 outputHashMode = "recursive";
17 doInstallCheck = false;
20 export GOPATH=$(pwd)/vendor
29 preferLocalBuild = true;