tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
randoop: init at 3.1.5
Pascal Wittmann
8 years ago
2c84e814
fabb5aa4
+30
2 changed files
expand all
collapse all
unified
split
pkgs
development
tools
analysis
randoop
default.nix
top-level
all-packages.nix
+28
pkgs/development/tools/analysis/randoop/default.nix
reviewed
···
1
1
+
{ stdenv, fetchurl, unzip }:
2
2
+
3
3
+
stdenv.mkDerivation rec {
4
4
+
version = "3.1.5";
5
5
+
name = "randoop-${version}";
6
6
+
7
7
+
src = fetchurl {
8
8
+
url = "https://github.com/randoop/randoop/releases/download/v${version}/${name}.zip";
9
9
+
sha256 = "13zspyi9fgnqc90qfqqnj0hb7869l0aixv0vwgj8m4m1hggpadlx";
10
10
+
};
11
11
+
12
12
+
buildInputs = [ unzip ];
13
13
+
14
14
+
installPhase = ''
15
15
+
mkdir -p $out/lib $out/doc
16
16
+
17
17
+
cp -R *.jar $out/lib
18
18
+
cp README.txt $out/doc
19
19
+
'';
20
20
+
21
21
+
meta = with stdenv.lib; {
22
22
+
description = "Automatic test generation for Java";
23
23
+
homepage = https://randoop.github.io/randoop/;
24
24
+
license = licenses.mit;
25
25
+
maintainers = with maintainers; [ pSub ];
26
26
+
platforms = platforms.linux;
27
27
+
};
28
28
+
}
+2
pkgs/top-level/all-packages.nix
reviewed
···
7072
7072
7073
7073
ragel = ragelStable;
7074
7074
7075
7075
+
randoop = callPackage ../development/tools/analysis/randoop { };
7076
7076
+
7075
7077
inherit (callPackages ../development/tools/parsing/ragel {
7076
7078
tex = texlive.combined.scheme-small;
7077
7079
}) ragelStable ragelDev;