about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2020-03-04 10:59:53 +0000
committerR. RyanTM <ryantm-bot@ryantm.com>2020-03-04 10:59:53 +0000
commite3461b75e7237dcb6dfdfa95a477cb2b95a4751c (patch)
tree4d892897489102133ebd4f26abc736c4ad0e34e7 /pkgs
parent79217339d26ff51ccacf10967de700d785f088e5 (diff)
downloadnixlib-e3461b75e7237dcb6dfdfa95a477cb2b95a4751c.tar
nixlib-e3461b75e7237dcb6dfdfa95a477cb2b95a4751c.tar.gz
nixlib-e3461b75e7237dcb6dfdfa95a477cb2b95a4751c.tar.bz2
nixlib-e3461b75e7237dcb6dfdfa95a477cb2b95a4751c.tar.lz
nixlib-e3461b75e7237dcb6dfdfa95a477cb2b95a4751c.tar.xz
nixlib-e3461b75e7237dcb6dfdfa95a477cb2b95a4751c.tar.zst
nixlib-e3461b75e7237dcb6dfdfa95a477cb2b95a4751c.zip
randoop: 4.2.1 -> 4.2.2
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/analysis/randoop/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/analysis/randoop/default.nix b/pkgs/development/tools/analysis/randoop/default.nix
index 9c318b0a454d..274418172d15 100644
--- a/pkgs/development/tools/analysis/randoop/default.nix
+++ b/pkgs/development/tools/analysis/randoop/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, unzip }:
 
 stdenv.mkDerivation rec {
-  version = "4.2.1";
+  version = "4.2.2";
   pname = "randoop";
 
   src = fetchurl {
     url = "https://github.com/randoop/randoop/releases/download/v${version}/${pname}-${version}.zip";
-    sha256 = "0sq6zyagb8qrj629rq7amzi0dnm6q00mll6gd5yx1nqdnjbfb4qd";
+    sha256 = "1ac4llphh16n5ihc2hb1vggl65mbkw1xd1j3ixfskvmcy8valgqw";
   };
 
   buildInputs = [ unzip ];
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "Automatic test generation for Java";
-    homepage = https://randoop.github.io/randoop/;
+    homepage = "https://randoop.github.io/randoop/";
     license = licenses.mit;
     maintainers = with maintainers; [ pSub ];
     platforms = platforms.linux;