2023-03-01 11:03:17 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchFromGitHub,
|
|
|
|
pkg-config,
|
|
|
|
meson,
|
|
|
|
ninja,
|
|
|
|
xxd,
|
|
|
|
gettext,
|
|
|
|
intltool,
|
2018-02-25 02:23:58 +00:00
|
|
|
gtk3,
|
|
|
|
lcms2,
|
|
|
|
exiv2,
|
|
|
|
libchamplain,
|
|
|
|
clutter-gtk,
|
|
|
|
ffmpegthumbnailer,
|
|
|
|
fbida,
|
2023-03-01 11:03:17 +00:00
|
|
|
libarchive,
|
|
|
|
djvulibre,
|
|
|
|
libheif,
|
|
|
|
openjpeg,
|
|
|
|
libjxl,
|
|
|
|
libraw,
|
|
|
|
lua5_3,
|
|
|
|
poppler,
|
|
|
|
gspell,
|
|
|
|
libtiff,
|
|
|
|
libwebp,
|
2024-06-22 12:28:53 +00:00
|
|
|
gphoto2,
|
|
|
|
imagemagick,
|
|
|
|
yad,
|
|
|
|
exiftool,
|
|
|
|
zenity,
|
|
|
|
libnotify,
|
2024-04-26 20:24:03 +00:00
|
|
|
wrapGAppsHook3,
|
|
|
|
fetchpatch,
|
|
|
|
doxygen,
|
2022-02-16 19:10:00 +00:00
|
|
|
nix-update-script,
|
2014-11-01 20:52:22 +00:00
|
|
|
}:
|
2009-11-25 08:58:42 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "geeqie";
|
2024-09-22 05:21:11 +00:00
|
|
|
version = "2.5";
|
2009-11-25 08:58:42 +00:00
|
|
|
|
2021-12-13 14:38:41 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "BestImageViewer";
|
|
|
|
repo = "geeqie";
|
|
|
|
rev = "v${version}";
|
2024-09-22 05:21:11 +00:00
|
|
|
hash = "sha256-k2FXj2ZKZzB5XpCcWzEv7Q1ozATfU3221XKcOFdWOGU=";
|
2009-11-25 08:58:42 +00:00
|
|
|
};
|
|
|
|
|
2023-08-07 20:17:14 +00:00
|
|
|
patches = [
|
2024-02-06 20:27:14 +00:00
|
|
|
# Remove changelog from menu
|
2023-08-07 20:17:14 +00:00
|
|
|
(fetchpatch {
|
2024-02-06 20:27:14 +00:00
|
|
|
url = "https://salsa.debian.org/debian/geeqie/-/raw/debian/master/debian/patches/Remove-changelog-from-menu-item.patch";
|
|
|
|
hash = "sha256-0awKKTLg/gUZhmwluVbHCOqssog9SneFOaUtG89q0go=";
|
2023-08-07 20:17:14 +00:00
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2022-01-17 23:07:26 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
|
|
|
|
2021-07-28 18:16:50 +00:00
|
|
|
nativeBuildInputs = [
|
2023-03-01 11:03:17 +00:00
|
|
|
pkg-config
|
|
|
|
gettext
|
|
|
|
intltool
|
2024-04-26 20:24:03 +00:00
|
|
|
wrapGAppsHook3
|
|
|
|
doxygen
|
2023-03-01 11:03:17 +00:00
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
xxd
|
2021-07-28 18:16:50 +00:00
|
|
|
];
|
2020-10-17 13:27:52 +00:00
|
|
|
|
2014-11-01 20:52:22 +00:00
|
|
|
buildInputs = [
|
2018-02-25 02:23:58 +00:00
|
|
|
gtk3
|
|
|
|
lcms2
|
|
|
|
exiv2
|
|
|
|
libchamplain
|
|
|
|
clutter-gtk
|
|
|
|
ffmpegthumbnailer
|
|
|
|
fbida
|
2023-03-01 11:03:17 +00:00
|
|
|
libarchive
|
|
|
|
djvulibre
|
|
|
|
libheif
|
|
|
|
openjpeg
|
|
|
|
libjxl
|
|
|
|
libraw
|
|
|
|
lua5_3
|
|
|
|
poppler
|
|
|
|
gspell
|
|
|
|
libtiff
|
|
|
|
libwebp
|
2014-11-01 20:52:22 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
# Allow geeqie to find exiv2 and exiftran, necessary to
|
|
|
|
# losslessly rotate JPEG images.
|
2024-02-06 20:27:14 +00:00
|
|
|
# Requires exiftran (fbida package) and exiv2.
|
2014-11-01 20:52:22 +00:00
|
|
|
sed -i $out/lib/geeqie/geeqie-rotate \
|
2021-01-15 13:21:58 +00:00
|
|
|
-e '1 a export PATH=${
|
|
|
|
lib.makeBinPath [
|
|
|
|
exiv2
|
|
|
|
fbida
|
|
|
|
]
|
|
|
|
}:$PATH'
|
2024-02-06 20:27:14 +00:00
|
|
|
# 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 \
|
2024-06-22 12:28:53 +00:00
|
|
|
-e '1 a export PATH=${
|
|
|
|
lib.makeBinPath [
|
|
|
|
imagemagick
|
|
|
|
exiv2
|
|
|
|
exiftool
|
|
|
|
zenity
|
|
|
|
]
|
|
|
|
}:$PATH'
|
2024-02-06 20:27:14 +00:00
|
|
|
# Requires gphoto2 and libnotify
|
|
|
|
sed -i $out/lib/geeqie/geeqie-tethered-photography \
|
2024-06-22 12:28:53 +00:00
|
|
|
-e '1 a export PATH=${
|
|
|
|
lib.makeBinPath [
|
|
|
|
gphoto2
|
|
|
|
zenity
|
|
|
|
libnotify
|
|
|
|
]
|
|
|
|
}:$PATH'
|
2024-02-06 20:27:14 +00:00
|
|
|
# Import images from camera.
|
|
|
|
# Requires gphoto2.
|
|
|
|
sed -i $out/lib/geeqie/geeqie-camera-import \
|
2024-06-22 12:28:53 +00:00
|
|
|
-e '1 a export PATH=${
|
|
|
|
lib.makeBinPath [
|
|
|
|
gphoto2
|
|
|
|
zenity
|
|
|
|
]
|
|
|
|
}:$PATH'
|
2024-02-06 20:27:14 +00:00
|
|
|
# Export jpeg from raw file.
|
|
|
|
# Requires exiv2, exiftool and lcms2.
|
|
|
|
sed -i $out/lib/geeqie/geeqie-export-jpeg \
|
2024-06-22 12:28:53 +00:00
|
|
|
-e '1 a export PATH=${
|
|
|
|
lib.makeBinPath [
|
|
|
|
zenity
|
|
|
|
exiv2
|
|
|
|
exiftool
|
|
|
|
lcms2
|
|
|
|
]
|
|
|
|
}:$PATH'
|
2014-11-01 20:52:22 +00:00
|
|
|
'';
|
2011-01-16 16:42:08 +00:00
|
|
|
|
2018-02-24 10:49:39 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2022-02-16 19:10:00 +00:00
|
|
|
passthru = {
|
2022-12-25 22:11:14 +00:00
|
|
|
updateScript = nix-update-script { };
|
2022-02-16 19:10:00 +00:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-09-03 22:49:40 +00:00
|
|
|
description = "Lightweight GTK based image viewer";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "geeqie";
|
2009-11-25 08:58:42 +00:00
|
|
|
|
|
|
|
longDescription = ''
|
2019-09-03 22:49:40 +00:00
|
|
|
Geeqie is a lightweight GTK based image viewer for Unix like
|
2014-06-03 09:45:57 +00:00
|
|
|
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.
|
2009-11-25 08:58:42 +00:00
|
|
|
'';
|
|
|
|
|
2014-09-26 21:18:57 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2009-11-25 08:58:42 +00:00
|
|
|
|
2022-01-17 23:07:26 +00:00
|
|
|
homepage = "https://www.geeqie.org/";
|
2009-11-25 08:58:42 +00:00
|
|
|
|
2023-11-12 21:56:54 +00:00
|
|
|
maintainers = with maintainers; [
|
|
|
|
pSub
|
|
|
|
markus1189
|
|
|
|
];
|
2018-04-30 22:43:54 +00:00
|
|
|
platforms = platforms.gnu ++ platforms.linux;
|
2009-11-25 08:58:42 +00:00
|
|
|
};
|
|
|
|
}
|