exif: use libintl on darwin

fixes #16034
This commit is contained in:
Matthew Bauer 2016-06-08 20:11:03 -05:00
parent bdb8bafd1f
commit 2b7b6047a5

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, libexif, popt }:
{ stdenv, fetchurl, pkgconfig, libexif, popt, libintlOrEmpty }:
stdenv.mkDerivation rec {
name = "exif-0.6.21";
@ -8,8 +8,8 @@ stdenv.mkDerivation rec {
sha256 = "1zb9hwdl783d4vd2s2rw642hg8hd6n0mfp6lrbiqmp9jmhlq5rsr";
};
buildInputs = [ pkgconfig libexif popt ];
buildInputs = [ pkgconfig libexif popt ] ++ libintlOrEmpty;
meta = {
homepage = http://libexif.sourceforge.net/;
description = "A utility to read and manipulate EXIF data in digital photographs";