kdelibs: Patch for CVE-2019-14744

See also: https://phabricator.kde.org/D22989
See also: https://github.com/NixOS/nixpkgs/issues/70102
This commit is contained in:
Thomas Tuegel 2019-10-02 13:32:01 -05:00
parent 260ef791a3
commit 9a0674296e
No known key found for this signature in database
GPG Key ID: 22CBF5249D4B4D59

View File

@ -1,5 +1,5 @@
{
stdenv, fetchurl,
stdenv, fetchurl, fetchpatch,
automoc4, cmake_2_8, libxslt, perl, pkgconfig, shared-mime-info,
attica, docbook_xml_dtd_42, docbook_xsl, giflib,
libdbusmenu_qt, libjpeg, phonon, qt4, openssl
@ -12,6 +12,14 @@ stdenv.mkDerivation rec {
url = "mirror://kde/stable/applications/17.08.3/src/${pname}-${version}.tar.xz";
sha256 = "1zn3yb09sd22bm54is0rn98amj0398zybl550dp406419sil7z9p";
};
patches = [
# https://phabricator.kde.org/D22989
(fetchpatch {
url = "https://cgit.kde.org/kdelibs.git/patch/?id=2c3762feddf7e66cf6b64d9058f625a715694a00";
sha256 = "1wbzywh8lcc66n6y3pxs18h7cwkq6g216faz27san33jpl8ra1i9";
name = "CVE-2019-14744.patch";
})
];
enableParallelBuilding = true;