feh: Remove un-needed libPath

This commit is contained in:
ndowens 2017-03-21 16:27:55 -05:00
parent f9e688e8a1
commit 6b9471f32b

View File

@ -24,8 +24,6 @@ stdenv.mkDerivation rec {
makeFlags="PREFIX=$out exif=1"
'';
libPath = makeLibraryPath ([ imlib2 curl xorg.libXinerama libjpeg libpng libexif xorg.libX11 ]);
postInstall = ''
wrapProgram "$out/bin/feh" --prefix PATH : "${libjpeg.bin}/bin" \
--add-flags '--theme=feh'
@ -34,6 +32,7 @@ stdenv.mkDerivation rec {
checkPhase = ''
PERL5LIB="${perlPackages.TestCommand}/lib/perl5/site_perl" make test
'';
doCheck = true;
meta = {