mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #3510 from copumpkin/jvmpkgs
Build junit rather than downloading binaries
This commit is contained in:
commit
8db0b55f60
3 changed files with 18 additions and 23 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -9,3 +9,5 @@ result-*
|
|||
/doc/manual.html
|
||||
/doc/manual.pdf
|
||||
.version-suffix
|
||||
|
||||
.DS_Store
|
|
@ -1,30 +1,23 @@
|
|||
{ stdenv, fetchurl }:
|
||||
{ stdenv, antBuild, fetchgit, perl }:
|
||||
|
||||
let
|
||||
version = "4.11";
|
||||
in antBuild {
|
||||
name = "junit-${version}";
|
||||
|
||||
junit = fetchurl {
|
||||
url = http://search.maven.org/remotecontent?filepath=junit/junit/4.11/junit-4.11.jar;
|
||||
sha256 = "1zh6klzv8w30dx7jg6pkhllk4587av4znflzhxz8x97c7rhf3a4h";
|
||||
# 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";
|
||||
sha256 = "019azv0cfy2zs45c7g3r952gvjmikkq76p2ydr4q5252r0pzy9dr";
|
||||
rev = "c2e4d911fadfbd64444fb285342a8f1b72336169";
|
||||
};
|
||||
|
||||
hamcrest = fetchurl {
|
||||
url = http://search.maven.org/remotecontent?filepath=org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar;
|
||||
sha256 = "1sfqqi8p5957hs9yik44an3lwpv8ln2a6sh9gbgli4vkx68yzzb6";
|
||||
};
|
||||
|
||||
in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "junit-4.11";
|
||||
|
||||
unpackPhase = "true";
|
||||
|
||||
installPhase =
|
||||
''
|
||||
mkdir -p $out/share/java
|
||||
ln -s ${junit} $out/share/java/junit.jar
|
||||
ln -s ${hamcrest} $out/share/java/hamcrest-core.jar
|
||||
'';
|
||||
antProperties = [
|
||||
{ name = "version"; value = version; }
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.junit.org/;
|
||||
|
|
|
@ -6461,7 +6461,7 @@ let
|
|||
stdenv = overrideInStdenv stdenv [gnumake380];
|
||||
};
|
||||
|
||||
junit = callPackage ../development/libraries/java/junit { };
|
||||
junit = callPackage ../development/libraries/java/junit { antBuild = releaseTools.antBuild; };
|
||||
|
||||
junixsocket = callPackage ../development/libraries/java/junixsocket { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue