summary refs log tree commit diff
diff options
context:
space:
mode:
authorgruve-p <jackielove4u@hotmail.com>2022-12-10 14:12:25 +0100
committergruve-p <jackielove4u@hotmail.com>2022-12-10 14:12:25 +0100
commit6603ebb0e5d59c20a5a179342c050a690623b9a4 (patch)
tree7ade644d7d5d1aad575409f3b94b436c502ca4fe
parentf8fc2323e9ba9d25aebef0a15cec5ca5cabdc495 (diff)
downloadnixpkgs-6603ebb0e5d59c20a5a179342c050a690623b9a4.tar
nixpkgs-6603ebb0e5d59c20a5a179342c050a690623b9a4.tar.gz
nixpkgs-6603ebb0e5d59c20a5a179342c050a690623b9a4.tar.bz2
nixpkgs-6603ebb0e5d59c20a5a179342c050a690623b9a4.tar.lz
nixpkgs-6603ebb0e5d59c20a5a179342c050a690623b9a4.tar.xz
nixpkgs-6603ebb0e5d59c20a5a179342c050a690623b9a4.tar.zst
nixpkgs-6603ebb0e5d59c20a5a179342c050a690623b9a4.zip
groestlcoin: 23.0 -> 24.0.1
-rw-r--r--pkgs/applications/blockchains/groestlcoin/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/blockchains/groestlcoin/default.nix b/pkgs/applications/blockchains/groestlcoin/default.nix
index 6d5bf0de2e7..36001a8d6df 100644
--- a/pkgs/applications/blockchains/groestlcoin/default.nix
+++ b/pkgs/applications/blockchains/groestlcoin/default.nix
@@ -24,21 +24,21 @@
 }:
 
 let
-  version = "23.0";
   desktop = fetchurl {
-    url = "https://raw.githubusercontent.com/Groestlcoin/packaging/${version}/debian/groestlcoin-qt.desktop";
+    # de45048 is the last commit when the debian/groestlcoin-qt.desktop file was changed
+    url = "https://raw.githubusercontent.com/Groestlcoin/packaging/de4504844e47cf2c7604789650a5db4f3f7a48aa/debian/groestlcoin-qt.desktop";
     sha256 = "0mxwq4jvcip44a796iwz7n1ljkhl3a4p47z7qlsxcfxw3zmm0k0k";
   };
 in
 stdenv.mkDerivation rec {
   pname = if withGui then "groestlcoin" else "groestlcoind";
-  inherit version;
+  version = "24.0.1";
 
   src = fetchFromGitHub {
     owner = "Groestlcoin";
     repo = "groestlcoin";
     rev = "v${version}";
-    sha256 = "1ag7wpaw4zssx1g482kziqr95yl2vk9r332689s3093xv9i9pz4s";
+    sha256 = "0k14y3iv5l26r820wzkwqxi67kwh26i0yq20ffd72shicjs1d3qc";
   };
 
   nativeBuildInputs = [ autoreconfHook pkg-config ]