* Allow geeqie to find exiv2 and exiftran, necessary to losslessly
rotate JPEG images. svn path=/nixpkgs/trunk/; revision=25590
This commit is contained in:
parent
56ea89a61e
commit
3e3dc422ac
1 changed files with 9 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
{ stdenv, fetchurl, pkgconfig, gtk, libpng, exiv2, lcms
|
||||
, intltool, gettext, libchamplain }:
|
||||
, intltool, gettext, libchamplain, fbida }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "geeqie-1.0";
|
||||
|
@ -23,6 +23,14 @@ stdenv.mkDerivation rec {
|
|||
libchamplain
|
||||
];
|
||||
|
||||
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'
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Geeqie, a lightweight GTK+ based image viewer";
|
||||
|
||||
|
|
Loading…
Reference in a new issue