3
0
Fork 0
forked from mirrors/nixpkgs

JUnit 4.8.2.

svn path=/nixpkgs/trunk/; revision=22076
This commit is contained in:
Ludovic Courtès 2010-06-01 10:13:21 +00:00
parent 5f7d5aa2bf
commit 4036f1f614

View file

@ -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/;
};
}