about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/mesos/mesos-deps.nix
blob: 1edb4a755d8912c171b4421a6cadfe333a0163b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{stdenv, curl}:

stdenv.mkDerivation {
  name = "mesos-maven-deps";
  builder = ./fetch-mesos-deps.sh;

  outputHashAlgo = "sha256";
  outputHashMode = "recursive";
  outputHash = "066ikswavq3l37x1s3pfdncyj77pvpa0kj14ax5dqb9njmsg0s11";

  buildInputs = [ curl ];

  impureEnvVars = stdenv.lib.fetchers.proxyImpureEnvVars;
}