summary refs log tree commit diff
path: root/pkgs/development/libraries/botan/generic.nix
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2015-03-08 21:55:17 +0300
committerMichael Raskin <7c6f434c@mail.ru>2015-03-09 01:03:01 +0300
commit1fdc855b2f9143162b94f69865e258d14917925c (patch)
tree0646bdecce41311e36fc605dfbd57cd7cba50c7e /pkgs/development/libraries/botan/generic.nix
parent3d4f7be9a3a4d477f7276c5fef7a1de03bf2c8fb (diff)
downloadnixpkgs-1fdc855b2f9143162b94f69865e258d14917925c.tar
nixpkgs-1fdc855b2f9143162b94f69865e258d14917925c.tar.gz
nixpkgs-1fdc855b2f9143162b94f69865e258d14917925c.tar.bz2
nixpkgs-1fdc855b2f9143162b94f69865e258d14917925c.tar.lz
nixpkgs-1fdc855b2f9143162b94f69865e258d14917925c.tar.xz
nixpkgs-1fdc855b2f9143162b94f69865e258d14917925c.tar.zst
nixpkgs-1fdc855b2f9143162b94f69865e258d14917925c.zip
Update botan unstable
Diffstat (limited to 'pkgs/development/libraries/botan/generic.nix')
-rw-r--r--pkgs/development/libraries/botan/generic.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/libraries/botan/generic.nix b/pkgs/development/libraries/botan/generic.nix
index 8d68009390d..b01ea401b38 100644
--- a/pkgs/development/libraries/botan/generic.nix
+++ b/pkgs/development/libraries/botan/generic.nix
@@ -1,6 +1,7 @@
 { stdenv, fetchurl, python, bzip2, zlib, gmp, openssl, boost
 # Passed by version specific builders
 , baseVersion, revision, sha256
+, extraConfigureFlags ? ""
 , ...
 }:
 
@@ -17,7 +18,7 @@ stdenv.mkDerivation rec {
   buildInputs = [ python bzip2 zlib gmp openssl boost ];
 
   configurePhase = ''
-    python configure.py --prefix=$out --with-gnump --with-bzip2 --with-zlib ${if openssl != null then "--with-openssl" else ""}
+    python configure.py --prefix=$out --with-bzip2 --with-zlib ${if openssl != null then "--with-openssl" else ""} ${extraConfigureFlags}
   '';
 
   enableParallelBuilding = true;