From c2ad2d602a6d2c5fc1a8c95609850fe61dc95f47 Mon Sep 17 00:00:00 2001 From: Yarny0 <41838844+Yarny0@users.noreply.github.com> Date: Wed, 26 Mar 2025 15:19:08 +0100 Subject: [PATCH] icewm: 3.7.1 -> 3.7.2 Release notes: https://github.com/ice-wm/icewm/releases/tag/3.7.2 Changes: https://github.com/ice-wm/icewm/compare/3.7.1...3.7.2 Also drops a patch which is now included in the new version, cf. https://github.com/NixOS/nixpkgs/issues/385959 https://github.com/bbidulock/icewm/issues/794 --- pkgs/by-name/ic/icewm/package.nix | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/pkgs/by-name/ic/icewm/package.nix b/pkgs/by-name/ic/icewm/package.nix index cfa97638698e..420cd0b84106 100644 --- a/pkgs/by-name/ic/icewm/package.nix +++ b/pkgs/by-name/ic/icewm/package.nix @@ -37,18 +37,17 @@ pcre2, perl, pkg-config, - fetchpatch, }: stdenv.mkDerivation (finalAttrs: { pname = "icewm"; - version = "3.7.1"; + version = "3.7.2"; src = fetchFromGitHub { owner = "ice-wm"; repo = "icewm"; tag = finalAttrs.version; - hash = "sha256-4JF2ZAp8dx2fpSYRUz4I8US3oIZrSS90oljuxQDm38A="; + hash = "sha256-A2rDDs55hxTX57B5Mq3Ljv3/n1ztPzYrZJ0+ndRMMn8="; }; strictDeps = true; @@ -95,17 +94,6 @@ stdenv.mkDerivation (finalAttrs: { pcre2 ]; - patches = [ - # https://github.com/NixOS/nixpkgs/issues/385959 - # https://github.com/bbidulock/icewm/issues/794 - # TODO: remove this patch when it is included in a release - (fetchpatch { - name = "fdomenu-icons-quoted"; - url = "https://github.com/bbidulock/icewm/commit/74bb0a2989127a3ff87d2932ff547713bc710cfe.patch"; - hash = "sha256-/rMSJYGAJs9cgNu5j4Mov/PfO7ocXQeNRq0vasfRcKA="; - }) - ]; - cmakeFlags = [ "-DPREFIX=$out" "-DCFGDIR=/etc/icewm"