summary refs log tree commit diff
diff options
context:
space:
mode:
authorMarkus Theil <theil.markus@gmail.com>2023-07-18 22:03:40 +0200
committerMarkus Theil <theil.markus@gmail.com>2023-07-18 22:10:28 +0200
commit45497da716dd3fd431dea6f29ad4cc3fbd064707 (patch)
treed7360c0239ae398e8054cf82c16a040a225cd349
parent29d53c75294a51b9441cf43dd0a7ef0123e50ba8 (diff)
downloadnixpkgs-45497da716dd3fd431dea6f29ad4cc3fbd064707.tar
nixpkgs-45497da716dd3fd431dea6f29ad4cc3fbd064707.tar.gz
nixpkgs-45497da716dd3fd431dea6f29ad4cc3fbd064707.tar.bz2
nixpkgs-45497da716dd3fd431dea6f29ad4cc3fbd064707.tar.lz
nixpkgs-45497da716dd3fd431dea6f29ad4cc3fbd064707.tar.xz
nixpkgs-45497da716dd3fd431dea6f29ad4cc3fbd064707.tar.zst
nixpkgs-45497da716dd3fd431dea6f29ad4cc3fbd064707.zip
botan2: small cleanup
The explicit setting of the C++ standard to C++11 was
introduced with botan 2.0.1 and is no longer needed.

Signed-off-by: Markus Theil <theil.markus@gmail.com>
-rw-r--r--pkgs/development/libraries/botan/2.0.nix3
1 files changed, 0 insertions, 3 deletions
diff --git a/pkgs/development/libraries/botan/2.0.nix b/pkgs/development/libraries/botan/2.0.nix
index 52f29287f8e..e2b4aa88041 100644
--- a/pkgs/development/libraries/botan/2.0.nix
+++ b/pkgs/development/libraries/botan/2.0.nix
@@ -4,7 +4,4 @@ callPackage ./generic.nix (args // {
   baseVersion = "2.19";
   revision = "3";
   sha256 = "sha256-2uBH85nFpH8IfbXT2dno8RrkmF0UySjXHaGv+AGALVU=";
-  postPatch = ''
-    sed -e 's@lang_flags "@&--std=c++11 @' -i src/build-data/cc/{gcc,clang}.txt
-  '';
 })