acba9240cd
It's currently the same machine, but tarballs.nixos.org should become an S3/CloudFront site eventually.
13 lines
280 B
Nix
13 lines
280 B
Nix
{stdenv, fetchurl, jdk, swt}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "azureus-2.3.0.6";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://tarballs.nixos.org/Azureus2.3.0.6.jar;
|
|
md5 = "84f85b144cdc574338c2c84d659ca620";
|
|
};
|
|
# buildInputs = [unzip];
|
|
inherit jdk swt;
|
|
}
|