mauikit-calendar: fix missing dependency specification
This commit is contained in:
parent
449e8cd8d1
commit
e61a9650ee
@ -60,7 +60,7 @@ let
|
|||||||
# libraries
|
# libraries
|
||||||
mauikit = callPackage ./mauikit.nix { };
|
mauikit = callPackage ./mauikit.nix { };
|
||||||
mauikit-accounts = callPackage ./mauikit-accounts.nix { };
|
mauikit-accounts = callPackage ./mauikit-accounts.nix { };
|
||||||
mauikit-calendar = callPackage ./mauikit-calendar.nix { };
|
mauikit-calendar = callPackage ./mauikit-calendar { };
|
||||||
mauikit-filebrowsing = callPackage ./mauikit-filebrowsing.nix { };
|
mauikit-filebrowsing = callPackage ./mauikit-filebrowsing.nix { };
|
||||||
mauikit-imagetools = callPackage ./mauikit-imagetools.nix { };
|
mauikit-imagetools = callPackage ./mauikit-imagetools.nix { };
|
||||||
mauikit-texteditor = callPackage ./mauikit-texteditor.nix { };
|
mauikit-texteditor = callPackage ./mauikit-texteditor.nix { };
|
||||||
|
@ -0,0 +1,10 @@
|
|||||||
|
--- a/CMakeLists.txt
|
||||||
|
+++ b/CMakeLists.txt
|
||||||
|
@@ -89,6 +89,7 @@ set_package_properties(Qt5QuickCompiler PROPERTIES
|
||||||
|
find_package(MauiKit)
|
||||||
|
|
||||||
|
find_package(KF5Akonadi ${AKONADI_VERSION} CONFIG REQUIRED)
|
||||||
|
+find_package(KF5AkonadiCalendar ${AKONADI_VERSION} CONFIG REQUIRED)
|
||||||
|
find_package(KF5AkonadiContact ${AKONADI_CONTACT_VERSION} CONFIG REQUIRED)
|
||||||
|
find_package(KF5CalendarSupport ${CALENDARSUPPORT_LIB_VERSION} CONFIG REQUIRED)
|
||||||
|
find_package(KF5EventViews ${EVENTVIEW_LIB_VERSION} CONFIG REQUIRED)
|
@ -6,6 +6,7 @@
|
|||||||
, qtquickcontrols2
|
, qtquickcontrols2
|
||||||
, akonadi
|
, akonadi
|
||||||
, akonadi-contacts
|
, akonadi-contacts
|
||||||
|
, akonadi-calendar
|
||||||
, calendarsupport
|
, calendarsupport
|
||||||
, eventviews
|
, eventviews
|
||||||
}:
|
}:
|
||||||
@ -13,6 +14,8 @@
|
|||||||
mkDerivation {
|
mkDerivation {
|
||||||
pname = "mauikit-calendar";
|
pname = "mauikit-calendar";
|
||||||
|
|
||||||
|
patches = [ ./add-akonadi-calendar.patch ];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
cmake
|
cmake
|
||||||
extra-cmake-modules
|
extra-cmake-modules
|
||||||
@ -21,6 +24,7 @@ mkDerivation {
|
|||||||
buildInputs = [
|
buildInputs = [
|
||||||
akonadi
|
akonadi
|
||||||
akonadi-contacts
|
akonadi-contacts
|
||||||
|
akonadi-calendar
|
||||||
calendarsupport
|
calendarsupport
|
||||||
eventviews
|
eventviews
|
||||||
mauikit
|
mauikit
|
Loading…
Reference in New Issue
Block a user