summary refs log tree commit diff
path: root/pkgs/applications/editors/bluej
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2022-03-29 12:05:35 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2022-03-29 12:05:35 +0000
commit9fe1eae494c581ebb4023c1c4fce88d96f9a7a77 (patch)
treefbca4469b1f249744bee917baf209a3e3e7e6c10 /pkgs/applications/editors/bluej
parent0e671e2b2b6e65c5712e0ccd8c2645d47f18f362 (diff)
downloadnixpkgs-9fe1eae494c581ebb4023c1c4fce88d96f9a7a77.tar
nixpkgs-9fe1eae494c581ebb4023c1c4fce88d96f9a7a77.tar.gz
nixpkgs-9fe1eae494c581ebb4023c1c4fce88d96f9a7a77.tar.bz2
nixpkgs-9fe1eae494c581ebb4023c1c4fce88d96f9a7a77.tar.lz
nixpkgs-9fe1eae494c581ebb4023c1c4fce88d96f9a7a77.tar.xz
nixpkgs-9fe1eae494c581ebb4023c1c4fce88d96f9a7a77.tar.zst
nixpkgs-9fe1eae494c581ebb4023c1c4fce88d96f9a7a77.zip
bluej: 5.0.2 -> 5.0.3
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 100178f7daf..b8a651b2d44 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 = "5.0.2";
+  version = "5.0.3";
   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 = "sha256-9sWfVQF/wCiVDKBmesMpM+5BHjFUPszm6U1SgJNQ8lE=";
+    sha256 = "sha256-OarqmptxZc7xEEYeoCVqHXkAvfzfSYx5nUp/iWPyoqw=";
   };
 
   nativeBuildInputs = [ makeWrapper ];