From 35a24a797730c463c2da598b51ae0c2e683facfd Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Mon, 27 Jul 2015 22:51:33 +0200 Subject: [PATCH] eclipse-testng: init at 6.9.5.201506120235 --- pkgs/applications/editors/eclipse/plugins.nix | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix index f1b5001b015..71c16e69382 100644 --- a/pkgs/applications/editors/eclipse/plugins.nix +++ b/pkgs/applications/editors/eclipse/plugins.nix @@ -188,4 +188,28 @@ in { }; }; + testng = buildEclipsePlugin rec { + name = "testng-${version}"; + version = "6.9.5.201506120235"; + javaName = "org.testng.eclipse"; + + srcFeature = fetchurl { + url = "http://beust.com/eclipse/features/org.testng.eclipse_6.9.5.201506120235.jar"; + sha256 = "02imv0rw10pik55a7p00jin65shvhfpzgna02ky94yx7dlf9fyy9"; + }; + + srcPlugin = fetchurl { + url = "http://beust.com/eclipse/plugins/org.testng.eclipse_6.9.5.201506120235.jar"; + sha256 = "0ni1ky4p5l1qzph0np1qw9pcyhrvy6zmn9c8q1b5rm5xv1fcvji4"; + }; + + meta = with stdenv.lib; { + homepage = http://testng.org/; + description = "Eclipse plugin for the TestNG testing framework"; + license = licenses.asl20; + platforms = platforms.all; + maintainers = [ maintainers.rycee ]; + }; + }; + }