summary refs log tree commit diff
path: root/pkgs/development/libraries/botan/generic.nix
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-08-10 23:42:50 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-08-11 12:12:37 +0200
commitd02d86b89b7f8a0005114245d8e29bab5aa012f2 (patch)
tree27b05ab56ab0a5b3248e6dbf8b0515410f36dddc /pkgs/development/libraries/botan/generic.nix
parent4aad492758ec8f7ecd2f06c91f3cf5089e09120e (diff)
downloadnixpkgs-d02d86b89b7f8a0005114245d8e29bab5aa012f2.tar
nixpkgs-d02d86b89b7f8a0005114245d8e29bab5aa012f2.tar.gz
nixpkgs-d02d86b89b7f8a0005114245d8e29bab5aa012f2.tar.bz2
nixpkgs-d02d86b89b7f8a0005114245d8e29bab5aa012f2.tar.lz
nixpkgs-d02d86b89b7f8a0005114245d8e29bab5aa012f2.tar.xz
nixpkgs-d02d86b89b7f8a0005114245d8e29bab5aa012f2.tar.zst
nixpkgs-d02d86b89b7f8a0005114245d8e29bab5aa012f2.zip
botan2: 2.18.1 -> 2.19.2
https://botan.randombit.net/news.html\#version-2-19-2-not-yet-released
Diffstat (limited to 'pkgs/development/libraries/botan/generic.nix')
-rw-r--r--pkgs/development/libraries/botan/generic.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/botan/generic.nix b/pkgs/development/libraries/botan/generic.nix
index 1384bdee9ad..3e5884c6c99 100644
--- a/pkgs/development/libraries/botan/generic.nix
+++ b/pkgs/development/libraries/botan/generic.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, python3, bzip2, zlib, gmp, openssl, boost
+{ lib, stdenv, fetchurl, python3, bzip2, zlib, gmp, boost
 # Passed by version specific builders
 , baseVersion, revision, sha256
 , sourceExtension ? "tar.xz"
@@ -26,11 +26,11 @@ stdenv.mkDerivation rec {
   patches = extraPatches;
   inherit postPatch;
 
-  buildInputs = [ python3 bzip2 zlib gmp openssl boost ]
+  buildInputs = [ python3 bzip2 zlib gmp boost ]
     ++ lib.optionals stdenv.isDarwin [ CoreServices Security ];
 
   configurePhase = ''
-    python configure.py --prefix=$out --with-bzip2 --with-zlib ${if openssl != null then "--with-openssl" else ""} ${extraConfigureFlags}${if stdenv.cc.isClang then " --cc=clang" else "" }
+    python configure.py --prefix=$out --with-bzip2 --with-zlib ${extraConfigureFlags}${if stdenv.cc.isClang then " --cc=clang" else "" }
   '';
 
   enableParallelBuilding = true;