mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
libexif: removed unneeded gettext dependency
svn path=/nixpkgs/branches/stdenv-updates/; revision=10457
This commit is contained in:
parent
f5bf68f9a8
commit
a20bd6bfa9
2 changed files with 7 additions and 2 deletions
|
@ -8,5 +8,10 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "0hxc3aik3sn8xq4mbmxxb8ycx2lwffmhi5xvz0zjffhfwkaqas6v";
|
||||
};
|
||||
|
||||
buildInputs = [gettext];
|
||||
configureFlags = "--enable-shared --disable-static";
|
||||
|
||||
meta = {
|
||||
homepage = http://libexif.sourceforge.net;
|
||||
description = "The EXIF parsing library";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -2205,7 +2205,7 @@ rec {
|
|||
};
|
||||
|
||||
libexif = import ../development/libraries/libexif {
|
||||
inherit fetchurl stdenv gettext;
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
libextractorFun = lib.sumArgs (selectVersion ../development/libraries/libextractor "0.5.18")
|
||||
|
|
Loading…
Reference in a new issue