From 0f2fbace94e0f8db1eb1eb2c5747a6725e522530 Mon Sep 17 00:00:00 2001 From: pancaek <20342389+pancaek@users.noreply.github.com> Date: Wed, 11 Mar 2026 10:02:55 -0700 Subject: [PATCH 1/2] koules: fix build --- pkgs/by-name/ko/koules/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ko/koules/package.nix b/pkgs/by-name/ko/koules/package.nix index 39e73b91e6bd..28d05f444d7c 100644 --- a/pkgs/by-name/ko/koules/package.nix +++ b/pkgs/by-name/ko/koules/package.nix @@ -14,8 +14,8 @@ let debian-extras = fetchzip { - url = "mirror://debian/pool/main/k/koules/koules_1.4-27.debian.tar.xz"; - hash = "sha256-g0Z6C1YSZL6N2eYUuZgXkPDoOLc4e9jAFL3ivk3OAS8="; + url = "mirror://debian/pool/main/k/koules/koules_1.4-29.debian.tar.xz"; + hash = "sha256-8AQGU3uAu1nCKeu4nqCDOL7FcSJeYvD1pmidEPLLekY="; }; in stdenv.mkDerivation (finalAttrs: { From 148c433f5e9b2a0690e2fe936dc44f5e68150564 Mon Sep 17 00:00:00 2001 From: pancaek <20342389+pancaek@users.noreply.github.com> Date: Wed, 11 Mar 2026 10:30:48 -0700 Subject: [PATCH 2/2] koules: move icon to spec-compliant location --- pkgs/by-name/ko/koules/package.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/ko/koules/package.nix b/pkgs/by-name/ko/koules/package.nix index 28d05f444d7c..02f7ba6ddb04 100644 --- a/pkgs/by-name/ko/koules/package.nix +++ b/pkgs/by-name/ko/koules/package.nix @@ -10,6 +10,7 @@ libx11, libxext, makeDesktopItem, + imagemagick, }: let @@ -32,6 +33,7 @@ stdenv.mkDerivation (finalAttrs: { gccmakedep installShellFiles copyDesktopItems + imagemagick ]; buildInputs = [ libx11 @@ -60,7 +62,8 @@ stdenv.mkDerivation (finalAttrs: { install -Dm755 xkoules $out/bin/xkoules install -Dm755 koules.sndsrv.linux $out/lib/koules.sndsrv.linux install -m644 sounds/* $out/lib/ - install -Dm644 Koules.xpm $out/share/pixmaps/koules.xpm + mkdir -p $out/share/icons/hicolor/32x32/apps + magick Koules.xpm -background none -extent 32x32-1 -gravity center $out/share/icons/hicolor/32x32/apps/koules.png installManPage xkoules.6 runHook postInstall '';