61462c94e6
Apparently everyone just copied those variables, instead of creating a library constant for them. Some even removed the comment. -.-
15 lines
324 B
Nix
15 lines
324 B
Nix
{stdenv, curl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "mesos-maven-deps";
|
|
builder = ./fetch-mesos-deps.sh;
|
|
|
|
outputHashAlgo = "sha256";
|
|
outputHashMode = "recursive";
|
|
outputHash = "12c6z5yvp60v57f6nijifp14i56bb5614hac1qg528s9liaf8vml";
|
|
|
|
buildInputs = [ curl ];
|
|
|
|
impureEnvVars = stdenv.lib.fetchers.proxyImpureEnvVars;
|
|
}
|