mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 01:51:24 +00:00
61462c94e6
Apparently everyone just copied those variables, instead of creating a library constant for them. Some even removed the comment. -.-
15 lines
328 B
Nix
15 lines
328 B
Nix
{stdenv, curl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "chronos-maven-deps";
|
|
builder = ./fetch-chronos-deps.sh;
|
|
|
|
outputHashAlgo = "sha256";
|
|
outputHashMode = "recursive";
|
|
outputHash = "0mm2sb1p5zz6b0z2s4zhdlix6fafydsxmqjy8zbkwzw4f6lazzyl";
|
|
|
|
buildInputs = [ curl ];
|
|
|
|
impureEnvVars = stdenv.lib.fetchers.proxyImpureEnvVars;
|
|
}
|