geeqie: Refactor

This commit is contained in:
William A. Kennington III 2014-11-01 13:52:22 -07:00
parent 79cc2754ca
commit 096e002f0b

View File

@ -1,5 +1,6 @@
{ stdenv, fetchgit, pkgconfig, autoconf, automake, gtk, libpng, exiv2, lcms { stdenv, fetchgit, autoconf, automake, libtool, pkgconfig, gtk, libpng, exiv2
, intltool, gettext, libchamplain, fbida }: , lcms, intltool, gettext, libchamplain, fbida
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "geeqie-${version}"; name = "geeqie-${version}";
@ -11,22 +12,25 @@ stdenv.mkDerivation rec {
sha256 = "1h9w0jrcqcp5jjgmks5pvpppnfxhcd1s3vqlyb3qyil2wfk8n8wp"; sha256 = "1h9w0jrcqcp5jjgmks5pvpppnfxhcd1s3vqlyb3qyil2wfk8n8wp";
}; };
preConfigure = "./autogen.sh"; configureFlags = [
"--enable-gps"
];
configureFlags = [ "--enable-gps" ]; configurePhase = ''
./autogen.sh $configureFlags
'';
buildInputs = buildInputs = [
[ pkgconfig autoconf automake gtk libpng exiv2 lcms intltool gettext autoconf automake libtool pkgconfig gtk libpng exiv2 lcms intltool gettext
libchamplain libchamplain
]; ];
postInstall = postInstall = ''
'' # Allow geeqie to find exiv2 and exiftran, necessary to
# Allow geeqie to find exiv2 and exiftran, necessary to # losslessly rotate JPEG images.
# losslessly rotate JPEG images. sed -i $out/lib/geeqie/geeqie-rotate \
sed -i $out/lib/geeqie/geeqie-rotate \ -e '1 a export PATH=${exiv2}/bin:${fbida}/bin:$PATH'
-e '1 a export PATH=${exiv2}/bin:${fbida}/bin:$PATH' '';
'';
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Lightweight GTK+ based image viewer"; description = "Lightweight GTK+ based image viewer";