about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-03-05 07:29:56 -0500
committerGitHub <noreply@github.com>2020-03-05 07:29:56 -0500
commite5fd322143deb5bb6be8854c5622ab865dd32410 (patch)
tree6b6b3a41ebe6ee80076cc560daf7b3895e3d12c6
parent70a865c6aeb7a5eacc01d3e226bf83850d6f9bfa (diff)
parente3461b75e7237dcb6dfdfa95a477cb2b95a4751c (diff)
downloadnixlib-e5fd322143deb5bb6be8854c5622ab865dd32410.tar
nixlib-e5fd322143deb5bb6be8854c5622ab865dd32410.tar.gz
nixlib-e5fd322143deb5bb6be8854c5622ab865dd32410.tar.bz2
nixlib-e5fd322143deb5bb6be8854c5622ab865dd32410.tar.lz
nixlib-e5fd322143deb5bb6be8854c5622ab865dd32410.tar.xz
nixlib-e5fd322143deb5bb6be8854c5622ab865dd32410.tar.zst
nixlib-e5fd322143deb5bb6be8854c5622ab865dd32410.zip
Merge pull request #81712 from r-ryantm/auto-update/randoop
randoop: 4.2.1 -> 4.2.2
-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;