You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
324 B
14 lines
324 B
{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; |
|
}
|
|
|