From abfee3e84015d792349c65c64703d4603c6f0f81 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Wed, 21 Jan 2015 10:28:47 +0100 Subject: [PATCH] feh: enable exif support --- pkgs/applications/graphics/feh/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/graphics/feh/default.nix b/pkgs/applications/graphics/feh/default.nix index e40a5fd0630..bd77446b1ec 100644 --- a/pkgs/applications/graphics/feh/default.nix +++ b/pkgs/applications/graphics/feh/default.nix @@ -1,5 +1,5 @@ { stdenv, makeWrapper, fetchurl, x11, imlib2, libjpeg, libpng -, libXinerama, curl }: +, libXinerama, curl, libexif }: stdenv.mkDerivation rec { name = "feh-2.12"; @@ -9,10 +9,10 @@ stdenv.mkDerivation rec { sha256 = "0ckhidmsms2l5jycp0qf71jzmb3bpbhjq3bcgfpvfvszah7pmq30"; }; - buildInputs = [makeWrapper x11 imlib2 libjpeg libpng libXinerama curl]; + buildInputs = [ makeWrapper x11 imlib2 libjpeg libpng libXinerama curl libexif ]; preBuild = '' - makeFlags="PREFIX=$out" + makeFlags="PREFIX=$out exif=1" ''; postInstall = ''