From 5fa88a50d56702472b360cf053d55a9aa448587f Mon Sep 17 00:00:00 2001 From: Alistair Grant Date: Sat, 12 Oct 2024 15:06:16 +0200 Subject: [PATCH] glamoroustoolkit: 1.1.2 -> 1.1.4 The upstream build of the GlamorousToolkit VM has been modified to use a more recent version of patchelf (0.17.2), removing the need to use patchelf 0.11 in the Nix build. --- pkgs/development/tools/glamoroustoolkit/default.nix | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/pkgs/development/tools/glamoroustoolkit/default.nix b/pkgs/development/tools/glamoroustoolkit/default.nix index 9f44b7493318..3fb6aed7f031 100644 --- a/pkgs/development/tools/glamoroustoolkit/default.nix +++ b/pkgs/development/tools/glamoroustoolkit/default.nix @@ -28,23 +28,16 @@ stdenv.mkDerivation (finalAttrs: { pname = "glamoroustoolkit"; - version = "1.1.2"; + version = "1.1.4"; src = fetchzip { url = "https://github.com/feenkcom/gtoolkit-vm/releases/download/v${finalAttrs.version}/GlamorousToolkit-x86_64-unknown-linux-gnu.zip"; stripRoot = false; - hash = "sha256-C48zAKkkOIHe7ggjtjBVLbfCVRdY6BJGqdvTI/rCfns="; + hash = "sha256-/p/oCE1fmlPjy1Xg36rsczZ74L0M7qWsdcFm6cHPVVY="; }; nativeBuildInputs = [ wrapGAppsHook3 - (patchelf.overrideAttrs (old: { - version = "0.11"; - src = fetchurl { - url = "https://nixos.org/releases/patchelf/patchelf-0.11/patchelf-0.11.tar.bz2"; - sha256 = "16ms3ijcihb88j3x6cl8cbvhia72afmfcphczb9cfwr0gbc22chx"; - }; - })) ]; sourceRoot = ".";