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-08-20 17:39:59 +0000
committerR. RyanTM <ryantm-bot@ryantm.com>2021-08-20 17:39:59 +0000
commit95d2aea1be8933ded9c94c4b802c9c4a03feac89 (patch)
tree765a28d14f104634c41c3c17e1779d586f65f428 /pkgs/applications/editors/bluej
parent456481aa3dd633038c86635f3bcf83d339254119 (diff)
downloadnixlib-95d2aea1be8933ded9c94c4b802c9c4a03feac89.tar
nixlib-95d2aea1be8933ded9c94c4b802c9c4a03feac89.tar.gz
nixlib-95d2aea1be8933ded9c94c4b802c9c4a03feac89.tar.bz2
nixlib-95d2aea1be8933ded9c94c4b802c9c4a03feac89.tar.lz
nixlib-95d2aea1be8933ded9c94c4b802c9c4a03feac89.tar.xz
nixlib-95d2aea1be8933ded9c94c4b802c9c4a03feac89.tar.zst
nixlib-95d2aea1be8933ded9c94c4b802c9c4a03feac89.zip
bluej: 5.0.1 -> 5.0.2
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 a34d6983b2f4..100178f7daf1 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.1";
+  version = "5.0.2";
   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-KhNhJ2xsw1g2yemwP6NQmJvk4cxZAQQNPEUBuLso5qM=";
+    sha256 = "sha256-9sWfVQF/wCiVDKBmesMpM+5BHjFUPszm6U1SgJNQ8lE=";
   };
 
   nativeBuildInputs = [ makeWrapper ];