acba9240cd
It's currently the same machine, but tarballs.nixos.org should become an S3/CloudFront site eventually.
15 lines
277 B
Nix
15 lines
277 B
Nix
{stdenv, fetchurl, regexp}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "jakarta-bcel-5.1";
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
url = http://tarballs.nixos.org/bcel-5.1.tar.gz;
|
|
md5 = "318f22e4f5f59b68cd004db83a7d65dc";
|
|
};
|
|
|
|
inherit regexp;
|
|
buildInputs = [stdenv];
|
|
}
|