botan: mark as insecure
This commit is contained in:
parent
45d492b3b3
commit
d4c033a206
@ -9,4 +9,8 @@ callPackage ./generic.nix (args // {
|
|||||||
postPatch = ''
|
postPatch = ''
|
||||||
sed -e 's@lang_flags "@&--std=c++11 @' -i src/build-data/cc/{gcc,clang}.txt
|
sed -e 's@lang_flags "@&--std=c++11 @' -i src/build-data/cc/{gcc,clang}.txt
|
||||||
'';
|
'';
|
||||||
|
knownVulnerabilities = [
|
||||||
|
# https://botan.randombit.net/security.html#id1
|
||||||
|
"2020-03-24: Side channel during CBC padding"
|
||||||
|
];
|
||||||
})
|
})
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
, sourceExtension ? "tar.xz"
|
, sourceExtension ? "tar.xz"
|
||||||
, extraConfigureFlags ? ""
|
, extraConfigureFlags ? ""
|
||||||
, postPatch ? null
|
, postPatch ? null
|
||||||
|
, knownVulnerabilities ? [ ]
|
||||||
, CoreServices
|
, CoreServices
|
||||||
, Security
|
, Security
|
||||||
, ...
|
, ...
|
||||||
@ -49,6 +50,7 @@ stdenv.mkDerivation rec {
|
|||||||
maintainers = with maintainers; [ raskin ];
|
maintainers = with maintainers; [ raskin ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
|
inherit knownVulnerabilities;
|
||||||
};
|
};
|
||||||
passthru.updateInfo.downloadPage = "http://files.randombit.net/botan/";
|
passthru.updateInfo.downloadPage = "http://files.randombit.net/botan/";
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user