nixpkgs/pkgs/development/eclipse/jdt-sdk/default.nix

13 lines
275 B
Nix
Raw Normal View History

{stdenv, fetchurl, unzip}:
stdenv.mkDerivation {
name = "eclipse-jdt-sdk-3.1";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/eclipse-JDT-SDK-3.1.zip;
md5 = "665b51beaa718b2fec6b0155ed369f76";
};
buildInputs = [unzip];
}