kdeFrameworks.kdelibs4support: add patch for openssl 1.1
This commit is contained in:
parent
3ffe4aa7f1
commit
ddc4514369
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
mkDerivation, lib, copyPathsToStore,
|
mkDerivation, lib, copyPathsToStore, fetchpatch,
|
||||||
docbook_xml_dtd_45, extra-cmake-modules, kdoctools,
|
docbook_xml_dtd_45, extra-cmake-modules, kdoctools,
|
||||||
kauth, karchive, kcompletion, kconfig, kconfigwidgets, kcoreaddons, kcrash,
|
kauth, karchive, kcompletion, kconfig, kconfigwidgets, kcoreaddons, kcrash,
|
||||||
kdbusaddons, kded, kdesignerplugin, kemoticons, kglobalaccel, kguiaddons,
|
kdbusaddons, kded, kdesignerplugin, kemoticons, kglobalaccel, kguiaddons,
|
||||||
|
@ -11,7 +11,12 @@
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
name = "kdelibs4support";
|
name = "kdelibs4support";
|
||||||
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
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;
|
setupHook = ./setup-hook.sh;
|
||||||
nativeBuildInputs = [ extra-cmake-modules qttools ];
|
nativeBuildInputs = [ extra-cmake-modules qttools ];
|
||||||
propagatedNativeBuildInputs = [ kdoctools ];
|
propagatedNativeBuildInputs = [ kdoctools ];
|
||||||
|
|
Loading…
Reference in New Issue