aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/botan
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2016-12-28 13:46:27 +0100
committerMichael Raskin <7c6f434c@mail.ru>2016-12-28 13:47:01 +0100
commitc12613c1110cb8f519295e5c2c21a52ce50acf51 (patch)
tree97215145ce804b72ba979571aed80ee5138eb697 /pkgs/development/libraries/botan
parent04736aef42e6bb5bad9d703bc9f2b53620d1b7c1 (diff)
botan: 1.10.13 -> 1.10.14, enforce c++11
Diffstat (limited to 'pkgs/development/libraries/botan')
-rw-r--r--pkgs/development/libraries/botan/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/development/libraries/botan/default.nix b/pkgs/development/libraries/botan/default.nix
index 6e8a8cd8d7fe..f66e7befeb00 100644
--- a/pkgs/development/libraries/botan/default.nix
+++ b/pkgs/development/libraries/botan/default.nix
@@ -2,7 +2,10 @@
callPackage ./generic.nix (args // {
baseVersion = "1.10";
- revision = "13";
- sha256 = "144vl65z7bys43sxgb09mbisyf2nmh49wh0d957y0ksa9cyrgv13";
+ revision = "14";
+ sha256 = "072czy26vfjcqjww4qccsd29fzkb6mb8czamr4x76rdi9lwhpv8h";
extraConfigureFlags = "--with-gnump";
+ postPatch = ''
+ sed -e 's@lang_flags "@&--std=c++11 @' -i src/build-data/cc/{gcc,clang}.txt
+ '';
})