2016-04-15 13:33:11 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, autoconf, automake, gtk, libpng, exiv2
|
|
|
|
, lcms, intltool, gettext, 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}";
|
2016-08-07 22:31:19 +01:00
|
|
|
version = "1.3";
|
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";
|
2016-08-07 22:31:19 +01:00
|
|
|
sha256 = "0gzc82sy66pbsmq7lnmq4y37zqad1zfwfls3ik3dmfm8s5nmcvsb";
|
2009-11-25 08:58:42 +00:00
|
|
|
};
|
|
|
|
|
2016-04-15 13:33:11 +01:00
|
|
|
preConfigure = "./autogen.sh";
|
|
|
|
|
2014-11-05 13:25:34 +00:00
|
|
|
configureFlags = [ "--enable-gps" ];
|
2014-11-01 20:52:22 +00:00
|
|
|
|
|
|
|
buildInputs = [
|
2016-04-15 13:33:11 +01:00
|
|
|
pkgconfig autoconf automake gtk libpng exiv2 lcms intltool gettext
|
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 \
|
|
|
|
-e '1 a export PATH=${exiv2}/bin:${fbida}/bin:$PATH'
|
|
|
|
'';
|
2011-01-16 16:42:08 +00:00
|
|
|
|
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;
|
|
|
|
|
2014-09-26 22:18:57 +01:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
|
|
|
platforms = platforms.gnu;
|
2009-11-25 08:58:42 +00:00
|
|
|
};
|
|
|
|
}
|