about summary refs log tree commit diff
path: root/pkgs/by-name
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-03-13 23:11:48 +0100
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2024-03-13 23:11:48 +0100
commite6af95c683b500957f07ce7c222f6b53d8a9057d (patch)
treef3a3e8abb0b1b43261b0597ca5e9626841a5668d /pkgs/by-name
parent3b421626dd8d54dc5fddd42ffb131f7cbbc2decf (diff)
downloadnixlib-e6af95c683b500957f07ce7c222f6b53d8a9057d.tar
nixlib-e6af95c683b500957f07ce7c222f6b53d8a9057d.tar.gz
nixlib-e6af95c683b500957f07ce7c222f6b53d8a9057d.tar.bz2
nixlib-e6af95c683b500957f07ce7c222f6b53d8a9057d.tar.lz
nixlib-e6af95c683b500957f07ce7c222f6b53d8a9057d.tar.xz
nixlib-e6af95c683b500957f07ce7c222f6b53d8a9057d.tar.zst
nixlib-e6af95c683b500957f07ce7c222f6b53d8a9057d.zip
smartgithg: 23.1.1 -> 23.1.2
Diffstat (limited to 'pkgs/by-name')
-rw-r--r--pkgs/by-name/sm/smartgithg/package.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/by-name/sm/smartgithg/package.nix b/pkgs/by-name/sm/smartgithg/package.nix
index 693505b20305..4693511951a1 100644
--- a/pkgs/by-name/sm/smartgithg/package.nix
+++ b/pkgs/by-name/sm/smartgithg/package.nix
@@ -2,7 +2,7 @@
 , stdenv
 , fetchurl
 , makeDesktopItem
-, openjdk19
+, openjdk21
 , gtk3
 , glib
 , gnome
@@ -11,15 +11,15 @@
 , which
 }:
 let
-  jre = openjdk19;
+  jre = openjdk21;
 in
 stdenv.mkDerivation rec {
   pname = "smartgithg";
-  version = "23.1.1";
+  version = "23.1.2";
 
   src = fetchurl {
     url = "https://www.syntevo.com/downloads/smartgit/smartgit-linux-${builtins.replaceStrings [ "." ] [ "_" ] version}.tar.gz";
-    sha256 = "sha256-LXB+OymApJjL4bgOZ8Vfd193jZHVbQ6G2zmrHNE/OJk=";
+    hash = "sha256-gXfHmRPUhs8s7IQIhN0vQyx8NpLrS28ufNNYOMA4AXw=";
   };
 
   nativeBuildInputs = [ wrapGAppsHook ];