ceph: Fix CVE-2020-25660
(cherry picked from commit d835ad4f1a7cdcf794d58ccd658a538b848671d0)
This commit is contained in:
parent
387b2c976f
commit
e790ba33ff
|
@ -1,4 +1,5 @@
|
||||||
{ stdenv, runCommand, fetchurl
|
{ stdenv, runCommand, fetchurl
|
||||||
|
, fetchpatch
|
||||||
, ensureNewerSourcesHook
|
, ensureNewerSourcesHook
|
||||||
, cmake, pkgconfig
|
, cmake, pkgconfig
|
||||||
, which, git
|
, which, git
|
||||||
|
@ -134,6 +135,11 @@ in rec {
|
||||||
patches = [
|
patches = [
|
||||||
./0000-fix-SPDK-build-env.patch
|
./0000-fix-SPDK-build-env.patch
|
||||||
./ceph-glibc-2-32-sigdescr_np.patch
|
./ceph-glibc-2-32-sigdescr_np.patch
|
||||||
|
(fetchpatch {
|
||||||
|
name = "CVE-2020-25660";
|
||||||
|
url = "https://github.com/ceph/ceph/compare/2c93eff00150f0cc5f106a559557a58d3d7b6f1f...6c14c2fb5650426285428dfe6ca1597e5ea1d07d.patch";
|
||||||
|
sha256 = "032hl15q34gq7y6bnljmklpsbd3bpkzmg7r3w0x0ly786iz7zwhm";
|
||||||
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
|
Loading…
Reference in New Issue