nixpkgs/pkgs/development/eclipse/ecj/default.nix
Martin Bravenboer a7eba5ec59 Added the Eclipse JDT SDK
svn path=/nixpkgs/trunk/; revision=3785
2005-09-07 10:08:00 +00:00

14 lines
360 B
Nix

{stdenv, fetchurl, unzip, ant, j2re}:
stdenv.mkDerivation {
name = "ecj-3.1";
builder = ./builder.sh;
src = fetchurl {
url = ftp://sunsite.informatik.rwth-aachen.de/pub/mirror/eclipse/R-3.1-200506271435/eclipse-sourceBuild-srcIncluded-3.1.zip;
md5 = "19ad65d52005da5eaa1d3687b3a50de2";
};
inherit j2re;
buildInputs = [unzip ant j2re];
}