summary refs log tree commit diff
path: root/pkgs/development/libraries/botan/default.nix
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2014-09-19 10:56:08 -0700
committerWilliam A. Kennington III <william@wkennington.com>2014-09-21 17:20:59 -0700
commit31220480d83a642f8bf6fe0529633c9460384666 (patch)
tree816642d7700126191bb3ba070c42229213a8c690 /pkgs/development/libraries/botan/default.nix
parentbe2c1d79082e92e17c58566fe01cba9fa13857e5 (diff)
downloadnixpkgs-31220480d83a642f8bf6fe0529633c9460384666.tar
nixpkgs-31220480d83a642f8bf6fe0529633c9460384666.tar.gz
nixpkgs-31220480d83a642f8bf6fe0529633c9460384666.tar.bz2
nixpkgs-31220480d83a642f8bf6fe0529633c9460384666.tar.lz
nixpkgs-31220480d83a642f8bf6fe0529633c9460384666.tar.xz
nixpkgs-31220480d83a642f8bf6fe0529633c9460384666.tar.zst
nixpkgs-31220480d83a642f8bf6fe0529633c9460384666.zip
boost: Update depdendent packages
Diffstat (limited to 'pkgs/development/libraries/botan/default.nix')
-rw-r--r--pkgs/development/libraries/botan/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/libraries/botan/default.nix b/pkgs/development/libraries/botan/default.nix
index 64dd821c43f..e603b904dda 100644
--- a/pkgs/development/libraries/botan/default.nix
+++ b/pkgs/development/libraries/botan/default.nix
@@ -9,8 +9,9 @@ let
   helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++ 
     [];
 
-  buildInputs = map (n: builtins.getAttr n x)
-    (builtins.attrNames (builtins.removeAttrs x helperArgNames));
+  buildInputs = [ boost.lib ]
+    ++ map (n: builtins.getAttr n x)
+      (builtins.attrNames (builtins.removeAttrs x helperArgNames));
   sourceInfo = rec {
     baseName="botan";
     tarBaseName="Botan";