about summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2021-02-04 06:49:32 -0800
committerGitHub <noreply@github.com>2021-02-04 06:49:32 -0800
commitc32fe997147c1ae2c8ad1912c7c5b488f7fea6c8 (patch)
tree8b68a04951e1f5f728bff8c6fc072af8b07b878a /pkgs/applications/editors
parentfa6a0a0e85e36e0f1c2637a063ace12c7ac13be4 (diff)
parent25d751ae42663b0a112d2c4e7530dfe3bc423785 (diff)
downloadnixlib-c32fe997147c1ae2c8ad1912c7c5b488f7fea6c8.tar
nixlib-c32fe997147c1ae2c8ad1912c7c5b488f7fea6c8.tar.gz
nixlib-c32fe997147c1ae2c8ad1912c7c5b488f7fea6c8.tar.bz2
nixlib-c32fe997147c1ae2c8ad1912c7c5b488f7fea6c8.tar.lz
nixlib-c32fe997147c1ae2c8ad1912c7c5b488f7fea6c8.tar.xz
nixlib-c32fe997147c1ae2c8ad1912c7c5b488f7fea6c8.tar.zst
nixlib-c32fe997147c1ae2c8ad1912c7c5b488f7fea6c8.zip
Merge pull request #111862 from r-ryantm/auto-update/bluej
bluej: 4.2.2 -> 5.0.0
Diffstat (limited to 'pkgs/applications/editors')
-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 ];