2016-09-11 23:24:51 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, autoconf, automake, gtk2, libpng, exiv2
|
2016-04-15 14:33:11 +02:00
|
|
|
, lcms, intltool, gettext, fbida
|
2014-11-01 21:52:22 +01:00
|
|
|
}:
|
2009-11-25 09:58:42 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-09-26 23:18:57 +02:00
|
|
|
name = "geeqie-${version}";
|
2016-08-07 23:31:19 +02:00
|
|
|
version = "1.3";
|
2009-11-25 09:58:42 +01:00
|
|
|
|
2014-11-05 14:25:34 +01:00
|
|
|
src = fetchurl {
|
2016-04-15 14:33:11 +02:00
|
|
|
url = "http://geeqie.org/${name}.tar.xz";
|
2016-08-07 23:31:19 +02:00
|
|
|
sha256 = "0gzc82sy66pbsmq7lnmq4y37zqad1zfwfls3ik3dmfm8s5nmcvsb";
|
2009-11-25 09:58:42 +01:00
|
|
|
};
|
|
|
|
|
2016-04-15 14:33:11 +02:00
|
|
|
preConfigure = "./autogen.sh";
|
|
|
|
|
2014-11-05 14:25:34 +01:00
|
|
|
configureFlags = [ "--enable-gps" ];
|
2014-11-01 21:52:22 +01:00
|
|
|
|
|
|
|
buildInputs = [
|
2016-09-11 23:24:51 +02:00
|
|
|
pkgconfig autoconf automake gtk2 libpng exiv2 lcms intltool gettext
|
2014-11-01 21:52:22 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
# Allow geeqie to find exiv2 and exiftran, necessary to
|
|
|
|
# losslessly rotate JPEG images.
|
|
|
|
sed -i $out/lib/geeqie/geeqie-rotate \
|
2016-08-23 00:06:51 +02:00
|
|
|
-e '1 a export PATH=${stdenv.lib.makeBinPath [ exiv2 fbida ]}:$PATH'
|
2014-11-01 21:52:22 +01:00
|
|
|
'';
|
2011-01-16 17:42:08 +01:00
|
|
|
|
2014-09-26 23:18:57 +02:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "Lightweight GTK+ based image viewer";
|
2009-11-25 09:58:42 +01:00
|
|
|
|
|
|
|
longDescription =
|
2014-06-03 11:45:57 +02: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 09:58:42 +01:00
|
|
|
'';
|
|
|
|
|
2014-09-26 23:18:57 +02:00
|
|
|
license = licenses.gpl2Plus;
|
2009-11-25 09:58:42 +01:00
|
|
|
|
|
|
|
homepage = http://geeqie.sourceforge.net;
|
|
|
|
|
2014-09-26 23:18:57 +02:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
|
|
|
platforms = platforms.gnu;
|
2009-11-25 09:58:42 +01:00
|
|
|
};
|
|
|
|
}
|