about summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2020-04-05 20:36:41 +0000
committerJon <jonringer@users.noreply.github.com>2020-04-07 12:24:19 -0700
commitd6d2007e7c90eeb635353071f4ab29a16720f59a (patch)
tree68df1ea686f9f8e7b560d72a93863c838ebc328c
parentbf3e71ab7d586946499ab2834dc4f875ef91874e (diff)
downloadnixlib-d6d2007e7c90eeb635353071f4ab29a16720f59a.tar
nixlib-d6d2007e7c90eeb635353071f4ab29a16720f59a.tar.gz
nixlib-d6d2007e7c90eeb635353071f4ab29a16720f59a.tar.bz2
nixlib-d6d2007e7c90eeb635353071f4ab29a16720f59a.tar.lz
nixlib-d6d2007e7c90eeb635353071f4ab29a16720f59a.tar.xz
nixlib-d6d2007e7c90eeb635353071f4ab29a16720f59a.tar.zst
nixlib-d6d2007e7c90eeb635353071f4ab29a16720f59a.zip
groovy: 3.0.0 -> 3.0.2
-rw-r--r--pkgs/development/interpreters/groovy/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/interpreters/groovy/default.nix b/pkgs/development/interpreters/groovy/default.nix
index e1d404a6b15d..1572f5e4be2c 100644
--- a/pkgs/development/interpreters/groovy/default.nix
+++ b/pkgs/development/interpreters/groovy/default.nix
@@ -4,11 +4,11 @@
 
 stdenv.mkDerivation rec {
   pname = "groovy";
-  version = "3.0.0";
+  version = "3.0.2";
 
   src = fetchurl {
     url = "http://dl.bintray.com/groovy/maven/apache-groovy-binary-${version}.zip";
-    sha256 = "10nn04hfky4x75nss33vvslw958pjvhw35lcfb3lxvaifqg23cpl";
+    sha256 = "1ddw3fqrmwh4w6z6xgck4jhmq33rwgbmpjw07g12ri1vgw4xks9w";
   };
 
   buildInputs = [ unzip makeWrapper ];
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "An agile dynamic language for the Java Platform";
-    homepage = http://groovy-lang.org/;
+    homepage = "http://groovy-lang.org/";
     license = licenses.asl20;
     maintainers = with maintainers; [ pSub ];
     platforms = with platforms; unix;