about summary refs log tree commit diff
path: root/pkgs/applications/editors/bluej
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2021-02-04 02:44:26 +0000
committerR. RyanTM <ryantm-bot@ryantm.com>2021-02-04 02:44:26 +0000
commit25d751ae42663b0a112d2c4e7530dfe3bc423785 (patch)
tree612d36693854f845f7bcd73ec00b7dc9fd62e722 /pkgs/applications/editors/bluej
parent77da66eb12c3ff302dd99de2d66fc09e3e902435 (diff)
downloadnixlib-25d751ae42663b0a112d2c4e7530dfe3bc423785.tar
nixlib-25d751ae42663b0a112d2c4e7530dfe3bc423785.tar.gz
nixlib-25d751ae42663b0a112d2c4e7530dfe3bc423785.tar.bz2
nixlib-25d751ae42663b0a112d2c4e7530dfe3bc423785.tar.lz
nixlib-25d751ae42663b0a112d2c4e7530dfe3bc423785.tar.xz
nixlib-25d751ae42663b0a112d2c4e7530dfe3bc423785.tar.zst
nixlib-25d751ae42663b0a112d2c4e7530dfe3bc423785.zip
bluej: 4.2.2 -> 5.0.0
Diffstat (limited to 'pkgs/applications/editors/bluej')
-rw-r--r--pkgs/applications/editors/bluej/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/editors/bluej/default.nix b/pkgs/applications/editors/bluej/default.nix
index af333e00961e..c0ca16a284a5 100644
--- a/pkgs/applications/editors/bluej/default.nix
+++ b/pkgs/applications/editors/bluej/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   pname = "bluej";
-  version = "4.2.2";
+  version = "5.0.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.bluej.org/download/files/BlueJ-linux-${builtins.replaceStrings ["."] [""] version}.deb";
-    sha256 = "5c2241f2208e98fcf9aad7c7a282bcf16e6fd543faa5fdb0b99b34d1023113c3";
+    sha256 = "sha256-U81FIf67Qm/86+hA9iUCHt61dxiZsTkkequlVjft6/0=";
   };
 
   nativeBuildInputs = [ makeWrapper ];