nixpkgs/pkgs/development/libraries/java/junit/default.nix
Ludovic Courtès 4036f1f614 JUnit 4.8.2.
svn path=/nixpkgs/trunk/; revision=22076
2010-06-01 10:13:21 +00:00

18 lines
339 B
Nix

{stdenv, fetchurl, unzip} :
stdenv.mkDerivation {
name = "junit-4.8.2";
builder = ./builder.sh;
src = fetchurl {
url = http://github.com/downloads/KentBeck/junit/junit4.8.2.zip;
sha256 = "01simvc3pmgp27p7vzavmsx5rphm6hqzwrqfkwllhf3812dcqxy6";
};
inherit unzip;
meta = {
homepage = http://www.junit.org/;
};
}