2021-12-13 14:38:41 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pkg-config, autoconf, automake, gettext, intltool
|
2018-02-25 02:23:58 +00:00
|
|
|
, gtk3, lcms2, exiv2, libchamplain, clutter-gtk, ffmpegthumbnailer, fbida
|
2022-03-31 19:11:26 +01:00
|
|
|
, wrapGAppsHook, 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 13:41:18 +01:00
|
|
|
pname = "geeqie";
|
2022-04-13 06:18:30 +01:00
|
|
|
version = "1.7.3";
|
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}";
|
2022-04-13 06:18:30 +01:00
|
|
|
sha256 = "sha256-O+yz/uNxueR+naEJG8EZ+k/JutRjJ5wwbB9DYb8YNLw=";
|
2009-11-25 08:58:42 +00:00
|
|
|
};
|
|
|
|
|
2019-06-27 07:32:50 +01:00
|
|
|
patches = [
|
|
|
|
# Do not build the changelog as this requires markdown.
|
2019-06-27 07:34:18 +01:00
|
|
|
(fetchpatch {
|
|
|
|
name = "geeqie-1.4-goodbye-changelog.patch";
|
|
|
|
url = "https://src.fedoraproject.org/rpms/geeqie/raw/132fb04a1a5e74ddb333d2474f7edb9a39dc8d27/f/geeqie-1.4-goodbye-changelog.patch";
|
|
|
|
sha256 = "00a35dds44kjjdqsbbfk0x9y82jspvsbpm2makcm1ivzlhjjgszn";
|
|
|
|
})
|
2019-06-27 07:32:50 +01:00
|
|
|
];
|
2016-04-15 13:33:11 +01:00
|
|
|
|
2022-01-17 23:07:26 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
|
|
|
|
2018-02-24 10:49:39 +00:00
|
|
|
preConfigure = "./autogen.sh";
|
2014-11-01 20:52:22 +00:00
|
|
|
|
2021-07-28 19:16:50 +01:00
|
|
|
nativeBuildInputs =
|
|
|
|
[ pkg-config autoconf automake gettext intltool
|
2022-03-31 19:11:26 +01:00
|
|
|
wrapGAppsHook doxygen
|
2021-07-28 19:16:50 +01:00
|
|
|
];
|
2020-10-17 14:27:52 +01: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
|
2014-11-01 20:52:22 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
# Allow geeqie to find exiv2 and exiftran, necessary to
|
|
|
|
# losslessly rotate JPEG images.
|
|
|
|
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'
|
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 = {
|
|
|
|
updateScript = nix-update-script {
|
|
|
|
attrPath = pname;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-09-03 23:49:40 +01:00
|
|
|
description = "Lightweight GTK based image viewer";
|
2009-11-25 08:58:42 +00:00
|
|
|
|
|
|
|
longDescription =
|
2014-06-03 10:45:57 +01:00
|
|
|
''
|
2019-09-03 23:49:40 +01:00
|
|
|
Geeqie is a lightweight GTK based image viewer for Unix like
|
2014-06-03 10:45:57 +01: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 22:18:57 +01: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
|
|
|
|
2020-10-17 14:27:52 +01:00
|
|
|
maintainers = with maintainers; [ jfrankenau pSub markus1189 ];
|
2018-04-30 23:43:54 +01:00
|
|
|
platforms = platforms.gnu ++ platforms.linux;
|
2009-11-25 08:58:42 +00:00
|
|
|
};
|
|
|
|
}
|