From 4036f1f614bf951baf610aa33e6c8de93dd7b246 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Tue, 1 Jun 2010 10:13:21 +0000 Subject: [PATCH] JUnit 4.8.2. svn path=/nixpkgs/trunk/; revision=22076 --- pkgs/development/libraries/java/junit/default.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/java/junit/default.nix b/pkgs/development/libraries/java/junit/default.nix index b5c850d1ae60..ea9b1029efc9 100644 --- a/pkgs/development/libraries/java/junit/default.nix +++ b/pkgs/development/libraries/java/junit/default.nix @@ -1,13 +1,17 @@ {stdenv, fetchurl, unzip} : stdenv.mkDerivation { - name = "junit-3.8.1"; + name = "junit-4.8.2"; builder = ./builder.sh; src = fetchurl { - url = mirror://sourceforge/junit/junit3.8.1.zip; - md5 = "5110326e4b7f7497dfa60ede4b626751"; + url = http://github.com/downloads/KentBeck/junit/junit4.8.2.zip; + sha256 = "01simvc3pmgp27p7vzavmsx5rphm6hqzwrqfkwllhf3812dcqxy6"; }; inherit unzip; + + meta = { + homepage = http://www.junit.org/; + }; }