2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, antBuild, fetchgit, perl }:
|
2005-09-11 08:38:59 -07:00
|
|
|
|
2014-01-24 07:07:20 -08:00
|
|
|
let
|
2014-08-09 17:50:16 -07:00
|
|
|
version = "4.11";
|
|
|
|
in antBuild {
|
|
|
|
name = "junit-${version}";
|
|
|
|
|
|
|
|
# I think this is only used to generate the docs, and will likely disappear
|
|
|
|
# with the next release of junit since its build system completely changes.
|
|
|
|
buildInputs = [perl];
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://github.com/junit-team/junit.git";
|
2016-06-02 04:26:44 -07:00
|
|
|
sha256 = "1cn5dhs6vpbfbcmnm2vb1212n0kblv8cxrvnwmksjxd6bzlkac1k";
|
2014-08-09 17:50:16 -07:00
|
|
|
rev = "c2e4d911fadfbd64444fb285342a8f1b72336169";
|
2005-09-11 08:38:59 -07:00
|
|
|
};
|
|
|
|
|
2014-08-09 17:50:16 -07:00
|
|
|
antProperties = [
|
|
|
|
{ name = "version"; value = version; }
|
|
|
|
];
|
2010-06-01 03:13:21 -07:00
|
|
|
|
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://www.junit.org/";
|
2014-01-24 07:07:20 -08:00
|
|
|
description = "A framework for repeatable tests in Java";
|
2021-01-21 09:00:13 -08:00
|
|
|
license = lib.licenses.epl10;
|
2015-09-08 05:03:51 -07:00
|
|
|
broken = true;
|
2010-06-01 03:13:21 -07:00
|
|
|
};
|
2005-09-11 08:38:59 -07:00
|
|
|
}
|