nixpkgs/pkgs/development/tools/build-managers/apache-ant/core-apache-ant.nix

13 lines
299 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "core-apache-ant-1.6.2";
realname = "apache-ant-1.6.2";
builder = ./core-builder.sh;
src = fetchurl {
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/apache-ant-1.6.2-bin.tar.bz2;
md5 = "a568c7271c3f168771c0313926d060fa";
};
}