summary refs log tree commit diff
path: root/pkgs/development/libraries/botan/2.0.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/botan/2.0.nix')
-rw-r--r--pkgs/development/libraries/botan/2.0.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/pkgs/development/libraries/botan/2.0.nix b/pkgs/development/libraries/botan/2.0.nix
new file mode 100644
index 0000000000000..8d87f119157ba
--- /dev/null
+++ b/pkgs/development/libraries/botan/2.0.nix
@@ -0,0 +1,10 @@
+{ callPackage, ... } @ args:
+
+callPackage ./generic.nix (args // {
+  baseVersion = "2.0";
+  revision = "1";
+  sha256 = "02sf6qghgs1lmprx715dnyll1rmqcjb9q6s50n20li8idlqysf51";
+  postPatch = ''
+    sed -e 's@lang_flags "@&--std=c++11 @' -i src/build-data/cc/{gcc,clang}.txt
+  '';
+})