Merge pull request #16083 from matthewbauer/fix-exif-darwin

exif: use libintl on darwin
This commit is contained in:
Arseniy Seroka 2016-06-10 21:13:45 +03:00 committed by GitHub
commit bf71761b69

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";