From 35d4acf531ff0857b8d4295bd28bc7543ad8f3f5 Mon Sep 17 00:00:00 2001 From: Aliaksandr Date: Fri, 22 May 2026 01:45:37 +0300 Subject: [PATCH] xzgv: drop Assisted-by: codex with gpt-5.5-high --- pkgs/by-name/xz/xzgv/package.nix | 47 -------------------------------- pkgs/top-level/aliases.nix | 1 + 2 files changed, 1 insertion(+), 47 deletions(-) delete mode 100644 pkgs/by-name/xz/xzgv/package.nix diff --git a/pkgs/by-name/xz/xzgv/package.nix b/pkgs/by-name/xz/xzgv/package.nix deleted file mode 100644 index 8439c3176a9e..000000000000 --- a/pkgs/by-name/xz/xzgv/package.nix +++ /dev/null @@ -1,47 +0,0 @@ -{ - lib, - stdenv, - fetchurl, - gtk2, - libexif, - pkg-config, - texinfo, -}: - -stdenv.mkDerivation (finalAttrs: { - pname = "xzgv"; - version = "0.9.2"; - src = fetchurl { - url = "mirror://sourceforge/xzgv/xzgv-${finalAttrs.version}.tar.gz"; - sha256 = "17l1xr9v07ggwga3vn0z1i4lnwjrr20rr8z1kjbw71aaijxl18i5"; - }; - nativeBuildInputs = [ - pkg-config - texinfo - ]; - buildInputs = [ - gtk2 - libexif - ]; - env.NIX_CFLAGS_COMPILE = toString [ - # gcc15 build failure - "-std=gnu17" - ]; - postPatch = '' - substituteInPlace config.mk \ - --replace /usr/local $out - substituteInPlace Makefile \ - --replace "all: src man" "all: src man info" - ''; - preInstall = '' - mkdir -p $out/share/{app-install/desktop,applications,info,pixmaps} - ''; - meta = { - homepage = "https://sourceforge.net/projects/xzgv/"; - description = "Picture viewer for X with a thumbnail-based selector"; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.womfoo ]; - platforms = lib.platforms.linux; - mainProgram = "xzgv"; - }; -}) diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 0a581bef2a4d..9a19614b67e9 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -2714,6 +2714,7 @@ mapAliases { xulrunner = throw "'xulrunner' has been renamed to/replaced by 'firefox-unwrapped'"; # Converted to throw 2025-10-27 xxgdb = throw "'xxgdb' seems inactive and doesn't compile with glibc 2.42"; # Added 2025-09-28 xxHash = warnAlias "'xxHash' has been renamed to 'xxhash'" xxhash; # Added 2026-02-12 + xzgv = throw "'xzgv' has been removed, as it depended on GTK 2. Consider using 'geeqie' or 'gthumb' instead."; # Added 2026-05-22 yabar = throw "'yabar' has been removed as the upstream project was archived"; # Added 2025-06-10 yabar-unstable = throw "'yabar' has been removed as the upstream project was archived"; # Added 2025-06-10 yacas-gui = throw "'yacas-gui' has been removed, as it depended on qt5 webengine. Upstream is considering deprecation of the gui entirely, see https://github.com/grzegorzmazur/yacas/issues/361."; # Added 2026-02-11