feh: fix with multiple outputs and split docs

This commit is contained in:
Vladimír Čunát 2015-10-11 21:38:03 +02:00
parent 333307d8b2
commit 14332a282c

View file

@ -9,6 +9,8 @@ stdenv.mkDerivation rec {
sha256 = "1059mflgw8hl398lwy55fj50a98xryvdf23wkpbn4s0z9388hl46";
};
outputs = [ "out" "doc" ];
buildInputs = [ makeWrapper xlibsWrapper imlib2 libjpeg libpng libXinerama curl libexif ];
preBuild = ''
@ -16,7 +18,7 @@ stdenv.mkDerivation rec {
'';
postInstall = ''
wrapProgram "$out/bin/feh" --prefix PATH : "${libjpeg}/bin" \
wrapProgram "$out/bin/feh" --prefix PATH : "${libjpeg.bin}/bin" \
--add-flags '--theme=feh'
'';