2014-10-04 12:38:09 +00:00
|
|
|
{ stdenv, fetchgit, pkgconfig, autoconf, automake, gtk, libpng, exiv2, lcms
|
2014-09-26 21:18:57 +00:00
|
|
|
, intltool, gettext, libchamplain, fbida }:
|
2009-11-25 08:58:42 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-09-26 21:18:57 +00:00
|
|
|
name = "geeqie-${version}";
|
|
|
|
version = "1.2";
|
2009-11-25 08:58:42 +00:00
|
|
|
|
2014-10-04 12:38:09 +00:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://gitorious.org/geeqie/geeqie.git";
|
|
|
|
rev = "refs/tags/v${version}";
|
|
|
|
sha256 = "1h9w0jrcqcp5jjgmks5pvpppnfxhcd1s3vqlyb3qyil2wfk8n8wp";
|
2009-11-25 08:58:42 +00:00
|
|
|
};
|
|
|
|
|
2014-09-26 21:18:57 +00:00
|
|
|
preConfigure = "./autogen.sh";
|
2012-03-20 11:16:10 +00:00
|
|
|
|
2010-07-18 22:47:23 +00:00
|
|
|
configureFlags = [ "--enable-gps" ];
|
|
|
|
|
|
|
|
buildInputs =
|
2014-09-26 21:18:57 +00:00
|
|
|
[ pkgconfig autoconf automake gtk libpng exiv2 lcms intltool gettext
|
|
|
|
libchamplain
|
2010-07-18 22:47:23 +00:00
|
|
|
];
|
2009-11-25 08:58:42 +00:00
|
|
|
|
2011-01-16 16:42:08 +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'
|
|
|
|
'';
|
|
|
|
|
2014-09-26 21:18:57 +00:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "Lightweight GTK+ based image viewer";
|
2009-11-25 08:58:42 +00:00
|
|
|
|
|
|
|
longDescription =
|
2014-06-03 09:45:57 +00: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 21:18:57 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2009-11-25 08:58:42 +00:00
|
|
|
|
|
|
|
homepage = http://geeqie.sourceforge.net;
|
|
|
|
|
2014-09-26 21:18:57 +00:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
|
|
|
platforms = platforms.gnu;
|
2009-11-25 08:58:42 +00:00
|
|
|
};
|
|
|
|
}
|