mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 13:57:10 +03:00
Merge pull request #16083 from matthewbauer/fix-exif-darwin
exif: use libintl on darwin
This commit is contained in:
commit
bf71761b69
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, libexif, popt }:
|
{ stdenv, fetchurl, pkgconfig, libexif, popt, libintlOrEmpty }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "exif-0.6.21";
|
name = "exif-0.6.21";
|
||||||
@ -8,8 +8,8 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1zb9hwdl783d4vd2s2rw642hg8hd6n0mfp6lrbiqmp9jmhlq5rsr";
|
sha256 = "1zb9hwdl783d4vd2s2rw642hg8hd6n0mfp6lrbiqmp9jmhlq5rsr";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig libexif popt ];
|
buildInputs = [ pkgconfig libexif popt ] ++ libintlOrEmpty;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://libexif.sourceforge.net/;
|
homepage = http://libexif.sourceforge.net/;
|
||||||
description = "A utility to read and manipulate EXIF data in digital photographs";
|
description = "A utility to read and manipulate EXIF data in digital photographs";
|
||||||
|
Loading…
Reference in New Issue
Block a user