mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 14:40:07 +03:00
7f3a3764ee
- comment out ant15 since nix-env cannot make the distinction - installation of tomcat 5 svn path=/nixpkgs/trunk/; revision=1299
13 lines
295 B
Nix
13 lines
295 B
Nix
{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://www.apache.org/dist/ant/binaries/apache-ant-1.6.2-bin.tar.bz2 ;
|
|
md5 = "a568c7271c3f168771c0313926d060fa";
|
|
};
|
|
}
|