nixpkgs/pkgs/development/libraries/java/junit/default.nix

18 lines
339 B
Nix
Raw Normal View History

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