1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00

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, fetchurl, unzip} :
stdenv.mkDerivation { stdenv.mkDerivation {
name = "junit-3.8.1"; name = "junit-4.8.2";
builder = ./builder.sh; builder = ./builder.sh;
src = fetchurl { src = fetchurl {
url = mirror://sourceforge/junit/junit3.8.1.zip; url = http://github.com/downloads/KentBeck/junit/junit4.8.2.zip;
md5 = "5110326e4b7f7497dfa60ede4b626751"; sha256 = "01simvc3pmgp27p7vzavmsx5rphm6hqzwrqfkwllhf3812dcqxy6";
}; };
inherit unzip; inherit unzip;
meta = {
homepage = http://www.junit.org/;
};
} }