diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix index 71c16e69382..872815395de 100644 --- a/pkgs/applications/editors/eclipse/plugins.nix +++ b/pkgs/applications/editors/eclipse/plugins.nix @@ -188,6 +188,25 @@ in { }; }; + jdt = buildEclipseUpdateSite rec { + name = "jdt-${version}"; + version = "4.5"; + + src = fetchzip { + stripRoot = false; + url = "https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops4/R-4.5-201506032000/org.eclipse.jdt-4.5.zip"; + sha256 = "0zrdn26f7qsms2xfiyc049bhhh0czsbf989pgyq736b8hfmmh9iy"; + }; + + meta = with stdenv.lib; { + homepage = https://www.eclipse.org/jdt/; + description = "Eclipse Java development tools"; + license = licenses.epl10; + platforms = platforms.all; + maintainers = [ maintainers.rycee ]; + }; + }; + testng = buildEclipsePlugin rec { name = "testng-${version}"; version = "6.9.5.201506120235";