eb04659fc2
This was achieved using the following command: sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b') And then manually reverted the following changes: - alias in top-level.nix - function name in wrap-gapps-hook.sh - comment in postFixup of at-spi2-core - comment in gtk4 - comment in preFixup of 1password-gui/linux.nix - comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix - comment in postFixup of telegram-desktop - comment in postFixup of fwupd - buildCommand of mongodb-compass - postFixup of xflux-gui - comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config - description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
101 lines
3.4 KiB
Nix
101 lines
3.4 KiB
Nix
{ lib, stdenv, fetchFromGitHub, pkg-config, meson, ninja, xxd, gettext, intltool
|
|
, gtk3, lcms2, exiv2, libchamplain, clutter-gtk, ffmpegthumbnailer, fbida
|
|
, libarchive, djvulibre, libheif, openjpeg, libjxl, libraw, lua5_3, poppler
|
|
, gspell, libtiff, libwebp
|
|
, gphoto2, imagemagick, yad, exiftool, gnome, libnotify
|
|
, wrapGAppsHook3, fetchpatch, doxygen
|
|
, nix-update-script
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "geeqie";
|
|
version = "2.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "BestImageViewer";
|
|
repo = "geeqie";
|
|
rev = "v${version}";
|
|
hash = "sha256-MVBKaiKcKknU0rChUYJ+N4oX4tVm145s+NqGQuDHY2g=";
|
|
};
|
|
|
|
patches = [
|
|
# Remove changelog from menu
|
|
(fetchpatch {
|
|
url = "https://salsa.debian.org/debian/geeqie/-/raw/debian/master/debian/patches/Remove-changelog-from-menu-item.patch";
|
|
hash = "sha256-0awKKTLg/gUZhmwluVbHCOqssog9SneFOaUtG89q0go=";
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs .
|
|
'';
|
|
|
|
nativeBuildInputs =
|
|
[ pkg-config gettext intltool
|
|
wrapGAppsHook3 doxygen
|
|
meson ninja xxd
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3 lcms2 exiv2 libchamplain clutter-gtk ffmpegthumbnailer fbida
|
|
libarchive djvulibre libheif openjpeg libjxl libraw lua5_3 poppler
|
|
gspell libtiff libwebp
|
|
];
|
|
|
|
postInstall = ''
|
|
# Allow geeqie to find exiv2 and exiftran, necessary to
|
|
# losslessly rotate JPEG images.
|
|
# Requires exiftran (fbida package) and exiv2.
|
|
sed -i $out/lib/geeqie/geeqie-rotate \
|
|
-e '1 a export PATH=${lib.makeBinPath [ exiv2 fbida ]}:$PATH'
|
|
# Zenity and yad are used in some scripts for reporting errors.
|
|
# Allow change quality of image.
|
|
# Requires imagemagick and yad.
|
|
sed -i $out/lib/geeqie/geeqie-resize-image \
|
|
-e '1 a export PATH=${lib.makeBinPath [ imagemagick yad ]}:$PATH'
|
|
# Allow to crop image.
|
|
# Requires imagemagick, exiv2 and exiftool.
|
|
sed -i $out/lib/geeqie/geeqie-image-crop \
|
|
-e '1 a export PATH=${lib.makeBinPath [ imagemagick exiv2 exiftool gnome.zenity ]}:$PATH'
|
|
# Requires gphoto2 and libnotify
|
|
sed -i $out/lib/geeqie/geeqie-tethered-photography \
|
|
-e '1 a export PATH=${lib.makeBinPath [ gphoto2 gnome.zenity libnotify ]}:$PATH'
|
|
# Import images from camera.
|
|
# Requires gphoto2.
|
|
sed -i $out/lib/geeqie/geeqie-camera-import \
|
|
-e '1 a export PATH=${lib.makeBinPath [ gphoto2 gnome.zenity ]}:$PATH'
|
|
# Export jpeg from raw file.
|
|
# Requires exiv2, exiftool and lcms2.
|
|
sed -i $out/lib/geeqie/geeqie-export-jpeg \
|
|
-e '1 a export PATH=${lib.makeBinPath [ gnome.zenity exiv2 exiftool lcms2 ]}:$PATH'
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Lightweight GTK based image viewer";
|
|
mainProgram = "geeqie";
|
|
|
|
longDescription =
|
|
''
|
|
Geeqie is a lightweight GTK based image viewer for Unix like
|
|
operating systems. It features: EXIF, IPTC and XMP metadata
|
|
browsing and editing interoperability; easy integration with other
|
|
software; geeqie works on files and directories, there is no need to
|
|
import images; fast preview for many raw image formats; tools for
|
|
image comparison, sorting and managing photo collection. Geeqie was
|
|
initially based on GQview.
|
|
'';
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
homepage = "https://www.geeqie.org/";
|
|
|
|
maintainers = with maintainers; [ pSub markus1189 ];
|
|
platforms = platforms.gnu ++ platforms.linux;
|
|
};
|
|
}
|