diff options
| author | Soares Chen <soares.chen@maybevoid.com> | 2020-06-01 12:56:21 +0200 |
|---|---|---|
| committer | Bjørn Forsman <bjorn.forsman@gmail.com> | 2020-06-02 13:54:16 +0200 |
| commit | 30d9df50ecd0cdb32afcf02e8012e08fa1bb7c6b (patch) | |
| tree | 3e8e9feb7cbb35d2b452a72ca2cd692f25efd22c | |
| parent | Merge pull request #89335 from Frostman/smartmontools-db-update (diff) | |
| download | nixpkgs-30d9df50ecd0cdb32afcf02e8012e08fa1bb7c6b.tar.gz | |
zbar: use libintl on darwin
| -rw-r--r-- | pkgs/tools/graphics/zbar/default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/tools/graphics/zbar/default.nix b/pkgs/tools/graphics/zbar/default.nix index 229d3f3cdbdb..8e5d687d2adc 100644 --- a/pkgs/tools/graphics/zbar/default.nix +++ b/pkgs/tools/graphics/zbar/default.nix @@ -16,6 +16,7 @@ , dbus , enableVideo ? stdenv.isLinux , enableDbus ? stdenv.isLinux +, libintl }: stdenv.mkDerivation rec { @@ -43,6 +44,7 @@ stdenv.mkDerivation rec { buildInputs = [ imagemagickBig libX11 + libintl ] ++ lib.optionals enableDbus [ dbus ] ++ lib.optionals enableVideo [ |
