nixpkgs/pkgs/applications/graphics/geeqie/default.nix

55 lines
1.7 KiB
Nix
Raw Normal View History

2018-02-24 10:49:39 +00:00
{ stdenv, fetchurl, pkgconfig, autoconf, automake, gettext, intltool
, gtk3, lcms2, exiv2, libchamplain, clutter_gtk, ffmpegthumbnailer, fbida
2014-11-01 20:52:22 +00:00
}:
stdenv.mkDerivation rec {
name = "geeqie-${version}";
2018-02-24 10:49:39 +00:00
version = "1.4";
src = fetchurl {
url = "http://geeqie.org/${name}.tar.xz";
2018-02-24 10:49:39 +00:00
sha256 = "0ciygvcxb78pqg59r6p061mkbpvkgv2rv3r79j3kgv3kalb3ln2w";
};
2018-02-24 10:49:39 +00:00
# Do not build the changelog as this requires markdown.
patches = [ ./geeqie-no-changelog.patch ];
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-24 10:49:39 +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 22:06:51 +00:00
-e '1 a export PATH=${stdenv.lib.makeBinPath [ exiv2 fbida ]}:$PATH'
2014-11-01 20:52:22 +00:00
'';
2018-02-24 10:49:39 +00:00
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "Lightweight GTK+ based image viewer";
longDescription =
''
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.
'';
license = licenses.gpl2Plus;
homepage = http://geeqie.sourceforge.net;
2018-02-24 10:49:39 +00:00
maintainers = with maintainers; [ jfrankenau pSub ];
platforms = platforms.gnu;
};
}