mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 06:14:26 +03:00
1c77030fee
Apache Mesos is a cluster manager that simplifies the complexity of running applications on a shared pool of servers.
19 lines
575 B
Nix
19 lines
575 B
Nix
{stdenv, curl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "mesos-maven-deps";
|
|
builder = ./fetch-mesos-deps.sh;
|
|
|
|
outputHashAlgo = "sha256";
|
|
outputHashMode = "recursive";
|
|
outputHash = "03qjq481ly5ajynlr9iqvrjra5fvv2jz4wp2f3in5vnxa61inrrk";
|
|
|
|
buildInputs = [ curl ];
|
|
|
|
# We borrow these environment variables from the caller to allow
|
|
# easy proxy configuration. This is impure, but a fixed-output
|
|
# derivation like fetchurl is allowed to do so since its result is
|
|
# by definition pure.
|
|
impureEnvVars = ["http_proxy" "https_proxy" "ftp_proxy" "all_proxy" "no_proxy"];
|
|
}
|