kdeFrameworks.kdelibs4support: add patch for openssl 1.1

This commit is contained in:
Robin Gloster 2017-07-29 00:35:39 +02:00
parent 3ffe4aa7f1
commit ddc4514369
No known key found for this signature in database
GPG Key ID: D5C458DF6DD97EDF

View File

@ -1,5 +1,5 @@
{
mkDerivation, lib, copyPathsToStore,
mkDerivation, lib, copyPathsToStore, fetchpatch,
docbook_xml_dtd_45, extra-cmake-modules, kdoctools,
kauth, karchive, kcompletion, kconfig, kconfigwidgets, kcoreaddons, kcrash,
kdbusaddons, kded, kdesignerplugin, kemoticons, kglobalaccel, kguiaddons,
@ -11,7 +11,12 @@
mkDerivation {
name = "kdelibs4support";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series) ++ [
(fetchpatch {
url = "https://raw.githubusercontent.com/OpenMandrivaAssociation/kdelibs4support/d101a02d6812ee65542ee36d0fd0f524be5c3fc1/kdelibs4support-5.32.0-openssl-1.1.patch";
sha256 = "00jiy43hxkczmih4mirbmzbgc42sv15rnnm0kaar963s58pp6fy2";
})
];
setupHook = ./setup-hook.sh;
nativeBuildInputs = [ extra-cmake-modules qttools ];
propagatedNativeBuildInputs = [ kdoctools ];