summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthew Justin Bauer <mjbauer95@gmail.com>2018-06-06 21:18:32 -0400
committerGitHub <noreply@github.com>2018-06-06 21:18:32 -0400
commitbcb303dc47eee14f95ae649de962691b31b2e45e (patch)
tree906e07f22c089c13ffcaac7f9d1c8bcf222c6e1e
parentb00737be2345fd3dce8968bbb3bc8c099e155e93 (diff)
downloadnixpkgs-bcb303dc47eee14f95ae649de962691b31b2e45e.tar
nixpkgs-bcb303dc47eee14f95ae649de962691b31b2e45e.tar.gz
nixpkgs-bcb303dc47eee14f95ae649de962691b31b2e45e.tar.bz2
nixpkgs-bcb303dc47eee14f95ae649de962691b31b2e45e.tar.lz
nixpkgs-bcb303dc47eee14f95ae649de962691b31b2e45e.tar.xz
nixpkgs-bcb303dc47eee14f95ae649de962691b31b2e45e.tar.zst
nixpkgs-bcb303dc47eee14f95ae649de962691b31b2e45e.zip
libbdplus: add gettext
-rw-r--r--pkgs/development/libraries/libbdplus/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libbdplus/default.nix b/pkgs/development/libraries/libbdplus/default.nix
index 83b9367f992..8b2f0b0da92 100644
--- a/pkgs/development/libraries/libbdplus/default.nix
+++ b/pkgs/development/libraries/libbdplus/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, libgcrypt, libgpgerror, yacc, flex }:
+{ stdenv, fetchurl, libgcrypt, libgpgerror, yacc, flex, gettext }:
 
 # library that allows libbluray to play BDplus protected bluray disks
 # libaacs does not infringe DRM's right or copyright. See the legal page of the website for more info.
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
     sha256 = "02n87lysqn4kg2qk7d1ffrp96c44zkdlxdj0n16hbgrlrpiwlcd6";
   };
 
-  buildInputs = [ libgcrypt libgpgerror ];
+  buildInputs = [ libgcrypt libgpgerror gettext ];
 
   nativeBuildInputs = [ ];