about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2022-03-29 10:01:25 -0700
committerGitHub <noreply@github.com>2022-03-29 10:01:25 -0700
commit5084a7dd8ddfc95b9c180c1e67f5a20956193671 (patch)
tree8ced28ba1c595af5783a4660765210066a386f35 /pkgs
parent0fd0218477bcf780b293adfc0e0c9fe6d6a16698 (diff)
parent9fe1eae494c581ebb4023c1c4fce88d96f9a7a77 (diff)
downloadnixlib-5084a7dd8ddfc95b9c180c1e67f5a20956193671.tar
nixlib-5084a7dd8ddfc95b9c180c1e67f5a20956193671.tar.gz
nixlib-5084a7dd8ddfc95b9c180c1e67f5a20956193671.tar.bz2
nixlib-5084a7dd8ddfc95b9c180c1e67f5a20956193671.tar.lz
nixlib-5084a7dd8ddfc95b9c180c1e67f5a20956193671.tar.xz
nixlib-5084a7dd8ddfc95b9c180c1e67f5a20956193671.tar.zst
nixlib-5084a7dd8ddfc95b9c180c1e67f5a20956193671.zip
Merge pull request #166234 from r-ryantm/auto-update/bluej
bluej: 5.0.2 -> 5.0.3
Diffstat (limited to 'pkgs')
-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 100178f7daf1..b8a651b2d44f 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 ];