From ca324e54dd25150eb728b1aad130197281bff9f8 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 28 May 2017 08:34:40 -0500 Subject: [PATCH] kdepim-runtime: patch from upstream to fix IMAP resource crash --- pkgs/applications/kde/kdepim-runtime.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/kde/kdepim-runtime.nix b/pkgs/applications/kde/kdepim-runtime.nix index 01683a6315c..f267c6a8306 100644 --- a/pkgs/applications/kde/kdepim-runtime.nix +++ b/pkgs/applications/kde/kdepim-runtime.nix @@ -1,5 +1,5 @@ { - mkDerivation, lib, kdepimTeam, + mkDerivation, lib, kdepimTeam, fetchpatch, extra-cmake-modules, kdoctools, shared_mime_info, akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime, akonadi-notes, @@ -20,6 +20,13 @@ mkDerivation { kalarmcal kcalutils kcontacts kdav kdelibs4support kidentitymanagement kimap kmailtransport kmbox kmime knotifications knotifyconfig qtwebengine ]; + patches = [ + # Fix crash in IMAP Akonadi resource + (fetchpatch { + url = "https://cgit.kde.org/kdepim-runtime.git/patch/?id=611510d0a005bc93102aa4b9f1a5b5f9905c4179"; + sha256 = "1zidfqwzj5waq01iqzgq1imr8aq7a2h5aysygi4ynakwgr4ypxcj"; + }) + ]; # Attempts to build some files before dependencies have been generated enableParallelBuilding = false; }