summary refs log tree commit diff
path: root/pkgs/applications/editors/greenfoot
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2021-06-30 17:12:51 +0000
committerAlyssa Ross <hi@alyssa.is>2021-06-30 17:37:25 +0000
commit4afb7c8e2c631f5c191aaf586673430b72e4b15e (patch)
treebdcc97485849e3f584a1aae4e3a328ecf1e01c12 /pkgs/applications/editors/greenfoot
parent5ef8322daa6007ef0256460c0de339f70d718e50 (diff)
downloadnixpkgs-4afb7c8e2c631f5c191aaf586673430b72e4b15e.tar
nixpkgs-4afb7c8e2c631f5c191aaf586673430b72e4b15e.tar.gz
nixpkgs-4afb7c8e2c631f5c191aaf586673430b72e4b15e.tar.bz2
nixpkgs-4afb7c8e2c631f5c191aaf586673430b72e4b15e.tar.lz
nixpkgs-4afb7c8e2c631f5c191aaf586673430b72e4b15e.tar.xz
nixpkgs-4afb7c8e2c631f5c191aaf586673430b72e4b15e.tar.zst
nixpkgs-4afb7c8e2c631f5c191aaf586673430b72e4b15e.zip
greenfoot: 3.6.1 -> 3.7.0
Diffstat (limited to 'pkgs/applications/editors/greenfoot')
-rw-r--r--pkgs/applications/editors/greenfoot/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/editors/greenfoot/default.nix b/pkgs/applications/editors/greenfoot/default.nix
index 34f489bfba3..962710be2f5 100644
--- a/pkgs/applications/editors/greenfoot/default.nix
+++ b/pkgs/applications/editors/greenfoot/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   pname = "greenfoot";
-  version = "3.6.1";
+  version = "3.7.0";
   src = fetchurl {
     # We use the deb here. First instinct might be to go for the "generic" JAR
     # download, but that is actually a graphical installer that is much harder
     # to unpack than the deb.
     url = "https://www.greenfoot.org/download/files/Greenfoot-linux-${builtins.replaceStrings ["."] [""] version}.deb";
-    sha256 = "112h6plpclj8kbv093m4pcczljhpd8d47d7a2am1yfgbyckx6hf0";
+    sha256 = "sha256-K9faU3ZarcR4g8riHpoZYVH0sXtueqfm3Fo+sZAHJA8=";
   };
 
   nativeBuildInputs = [ makeWrapper ];