mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
51 lines
1.5 KiB
Nix
51 lines
1.5 KiB
Nix
{ stdenv, fetchurl, pkgconfig, autoconf, automake, gtk2, libpng, exiv2
|
|
, lcms, intltool, gettext, fbida
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "geeqie-${version}";
|
|
version = "1.3";
|
|
|
|
src = fetchurl {
|
|
url = "http://geeqie.org/${name}.tar.xz";
|
|
sha256 = "0gzc82sy66pbsmq7lnmq4y37zqad1zfwfls3ik3dmfm8s5nmcvsb";
|
|
};
|
|
|
|
preConfigure = "./autogen.sh";
|
|
|
|
configureFlags = [ "--enable-gps" ];
|
|
|
|
buildInputs = [
|
|
pkgconfig autoconf automake gtk2 libpng exiv2 lcms intltool gettext
|
|
];
|
|
|
|
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=${stdenv.lib.makeBinPath [ exiv2 fbida ]}:$PATH'
|
|
'';
|
|
|
|
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;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
|
platforms = platforms.gnu;
|
|
};
|
|
}
|