2013-07-18 18:37:32 +01:00
|
|
|
{stdenv, fetchgit, unzip} :
|
2005-09-11 16:38:59 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2010-06-01 11:13:21 +01:00
|
|
|
name = "junit-4.8.2";
|
2005-09-11 16:38:59 +01:00
|
|
|
builder = ./builder.sh;
|
|
|
|
|
2013-07-18 18:37:32 +01:00
|
|
|
src = fetchgit {
|
|
|
|
url = https://github.com/junit-team/junit.git;
|
|
|
|
rev = "refs/tags/r4.8.2";
|
|
|
|
sha256 = "1w73l3x97kg8zmrp44xgvp3gr6sih0crm0dhhky6jiq915ba1dlh";
|
2005-09-11 16:38:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
inherit unzip;
|
2010-06-01 11:13:21 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.junit.org/;
|
|
|
|
};
|
2005-09-11 16:38:59 +01:00
|
|
|
}
|