Skip to content

Commit 2c84e81

Browse files
committedJun 4, 2017
randoop: init at 3.1.5
1 parent fabb5aa commit 2c84e81

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{ stdenv, fetchurl, unzip }:
2+
3+
stdenv.mkDerivation rec {
4+
version = "3.1.5";
5+
name = "randoop-${version}";
6+
7+
src = fetchurl {
8+
url = "https://github.com/randoop/randoop/releases/download/v${version}/${name}.zip";
9+
sha256 = "13zspyi9fgnqc90qfqqnj0hb7869l0aixv0vwgj8m4m1hggpadlx";
10+
};
11+
12+
buildInputs = [ unzip ];
13+
14+
installPhase = ''
15+
mkdir -p $out/lib $out/doc
16+
17+
cp -R *.jar $out/lib
18+
cp README.txt $out/doc
19+
'';
20+
21+
meta = with stdenv.lib; {
22+
description = "Automatic test generation for Java";
23+
homepage = https://randoop.github.io/randoop/;
24+
license = licenses.mit;
25+
maintainers = with maintainers; [ pSub ];
26+
platforms = platforms.linux;
27+
};
28+
}

‎pkgs/top-level/all-packages.nix

+2
Original file line numberDiff line numberDiff line change
@@ -7072,6 +7072,8 @@ with pkgs;
70727072

70737073
ragel = ragelStable;
70747074

7075+
randoop = callPackage ../development/tools/analysis/randoop { };
7076+
70757077
inherit (callPackages ../development/tools/parsing/ragel {
70767078
tex = texlive.combined.scheme-small;
70777079
}) ragelStable ragelDev;

0 commit comments

Comments
 (0)
Please sign in to comment.