2018-02-24 10:49:39 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, autoconf, automake, gettext, intltool
|
2018-02-25 02:23:58 +00:00
|
|
|
, gtk3, lcms2, exiv2, libchamplain, clutter-gtk, ffmpegthumbnailer, fbida
|
2014-11-01 20:52:22 +00:00
|
|
|
}:
|
2009-11-25 08:58:42 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-09-26 22:18:57 +01:00
|
|
|
name = "geeqie-${version}";
|
2018-02-24 10:49:39 +00:00
|
|
|
version = "1.4";
|
2009-11-25 08:58:42 +00:00
|
|
|
|
2014-11-05 13:25:34 +00:00
|
|
|
src = fetchurl {
|
2016-04-15 13:33:11 +01:00
|
|
|
url = "http://geeqie.org/${name}.tar.xz";
|
2018-02-24 10:49:39 +00:00
|
|
|
sha256 = "0ciygvcxb78pqg59r6p061mkbpvkgv2rv3r79j3kgv3kalb3ln2w";
|
2009-11-25 08:58:42 +00:00
|
|
|
};
|
|
|
|
|
2018-02-24 10:49:39 +00:00
|
|
|
# Do not build the changelog as this requires markdown.
|
|
|
|
patches = [ ./geeqie-no-changelog.patch ];
|
2016-04-15 13:33:11 +01:00
|
|
|
|
2018-02-24 10:49:39 +00:00
|
|
|
preConfigure = "./autogen.sh";
|
2014-11-01 20:52:22 +00:00
|
|
|
|
2018-02-24 10:49:39 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig autoconf automake gettext intltool ];
|
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 \
|
2016-08-22 23:06:51 +01:00
|
|
|
-e '1 a export PATH=${stdenv.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;
|
|
|
|
|
2014-09-26 22:18:57 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 15:21:08 +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
|
|
|
''
|
|
|
|
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.
|
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
|
|
|
|
|
|
|
homepage = http://geeqie.sourceforge.net;
|
|
|
|
|
2018-02-24 10:49:39 +00:00
|
|
|
maintainers = with maintainers; [ jfrankenau pSub ];
|
2018-04-30 23:43:54 +01:00
|
|
|
platforms = platforms.gnu ++ platforms.linux;
|
2009-11-25 08:58:42 +00:00
|
|
|
};
|
|
|
|
}
|