nixpkgs/pkgs/development/libraries/botan/2.0.nix
Thomas Gerbet 9a18802edf botan2: 2.17.2 -> 2.17.3
Fixes CVE-2021-24115.
2021-03-06 19:49:03 +01:00

11 lines
282 B
Nix

{ callPackage, ... } @ args:
callPackage ./generic.nix (args // {
baseVersion = "2.17";
revision = "3";
sha256 = "121vn1aryk36cpks70kk4c4cfic5g0qs82bf92xap9258ijkn4kr";
postPatch = ''
sed -e 's@lang_flags "@&--std=c++11 @' -i src/build-data/cc/{gcc,clang}.txt
'';
})