summary refs log tree commit diff
path: root/pkgs/development/libraries/botan/default.nix
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/default.nix
parent04736aef42e6bb5bad9d703bc9f2b53620d1b7c1 (diff)
downloadnixpkgs-c12613c1110cb8f519295e5c2c21a52ce50acf51.tar
nixpkgs-c12613c1110cb8f519295e5c2c21a52ce50acf51.tar.gz
nixpkgs-c12613c1110cb8f519295e5c2c21a52ce50acf51.tar.bz2
nixpkgs-c12613c1110cb8f519295e5c2c21a52ce50acf51.tar.lz
nixpkgs-c12613c1110cb8f519295e5c2c21a52ce50acf51.tar.xz
nixpkgs-c12613c1110cb8f519295e5c2c21a52ce50acf51.tar.zst
nixpkgs-c12613c1110cb8f519295e5c2c21a52ce50acf51.zip
botan: 1.10.13 -> 1.10.14, enforce c++11
Diffstat (limited to 'pkgs/development/libraries/botan/default.nix')
-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 6e8a8cd8d7f..f66e7befeb0 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
+  '';
 })