xzgv: drop
Assisted-by: codex with gpt-5.5-high
This commit is contained in:
@@ -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";
|
||||
};
|
||||
})
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user