summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2022-12-02 22:15:05 +0000
committerRobert Scott <code@humanleg.org.uk>2022-12-02 23:00:01 +0000
commit6c84c498cee51a80813d513fe645b34f1aaf14d3 (patch)
treef8db14fdfa048d6499882d1f97d59d916981cdff
parent7ceefed039fffb1af6d0c1b8e84543234c7d9510 (diff)
downloadnixpkgs-6c84c498cee51a80813d513fe645b34f1aaf14d3.tar
nixpkgs-6c84c498cee51a80813d513fe645b34f1aaf14d3.tar.gz
nixpkgs-6c84c498cee51a80813d513fe645b34f1aaf14d3.tar.bz2
nixpkgs-6c84c498cee51a80813d513fe645b34f1aaf14d3.tar.lz
nixpkgs-6c84c498cee51a80813d513fe645b34f1aaf14d3.tar.xz
nixpkgs-6c84c498cee51a80813d513fe645b34f1aaf14d3.tar.zst
nixpkgs-6c84c498cee51a80813d513fe645b34f1aaf14d3.zip
botan2: 2.19.2 -> 2.19.3
-rw-r--r--pkgs/development/libraries/botan/2.0.nix4
-rw-r--r--pkgs/development/libraries/botan/generic.nix2
2 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/libraries/botan/2.0.nix b/pkgs/development/libraries/botan/2.0.nix
index 6987b6c35f0..52f29287f8e 100644
--- a/pkgs/development/libraries/botan/2.0.nix
+++ b/pkgs/development/libraries/botan/2.0.nix
@@ -2,8 +2,8 @@
 
 callPackage ./generic.nix (args // {
   baseVersion = "2.19";
-  revision = "2";
-  sha256 = "sha256-OvXxdhXGtc2Lgy0mn7bLTVTsZPnrCd2/Gt1Qk5QbTXU=";
+  revision = "3";
+  sha256 = "sha256-2uBH85nFpH8IfbXT2dno8RrkmF0UySjXHaGv+AGALVU=";
   postPatch = ''
     sed -e 's@lang_flags "@&--std=c++11 @' -i src/build-data/cc/{gcc,clang}.txt
   '';
diff --git a/pkgs/development/libraries/botan/generic.nix b/pkgs/development/libraries/botan/generic.nix
index 3e5884c6c99..71ac20c4f31 100644
--- a/pkgs/development/libraries/botan/generic.nix
+++ b/pkgs/development/libraries/botan/generic.nix
@@ -46,6 +46,8 @@ stdenv.mkDerivation rec {
     ln -s botan-*.pc botan.pc || true
   '';
 
+  doCheck = true;
+
   meta = with lib; {
     description = "Cryptographic algorithms library";
     maintainers = with maintainers; [ raskin ];