nixpkgs/pkgs/applications/kde/merkuro.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

102 lines
1.6 KiB
Nix
Raw Normal View History

2021-12-02 18:15:18 +00:00
{ lib
, mkDerivation
, cmake
, extra-cmake-modules
, makeWrapper
, qtbase
, qtquickcontrols2
, qtsvg
, qtlocation
, qtdeclarative
2022-02-13 16:42:11 +00:00
, qqc2-desktop-style
2021-12-02 18:15:18 +00:00
, kirigami2
, kirigami-addons
2021-12-02 18:15:18 +00:00
, kdbusaddons
, ki18n
, kcalendarcore
, kconfigwidgets
, kwindowsystem
, kcoreaddons
, kcontacts
, kitemmodels
, kxmlgui
, knotifications
, kiconthemes
, kservice
, kmime
, kpackage
, eventviews
, calendarsupport
, akonadi
, akonadi-search
2021-12-02 18:15:18 +00:00
, akonadi-contacts
, akonadi-calendar-tools
, kdepim-runtime
2022-12-12 20:10:28 +00:00
, gpgme
, pimcommon
, mailcommon
, messagelib
2021-12-02 18:15:18 +00:00
}:
2023-08-24 10:59:41 +00:00
mkDerivation {
pname = "merkuro";
2021-12-02 18:15:18 +00:00
nativeBuildInputs = [
cmake
extra-cmake-modules
makeWrapper
];
buildInputs = [
qtbase
qtquickcontrols2
qtsvg
qtlocation
qtdeclarative
2022-02-13 16:42:11 +00:00
qqc2-desktop-style
2021-12-02 18:15:18 +00:00
kirigami2
kirigami-addons
2021-12-02 18:15:18 +00:00
kdbusaddons
ki18n
kcalendarcore
kconfigwidgets
kwindowsystem
kcoreaddons
kcontacts
kitemmodels
kxmlgui
knotifications
kiconthemes
kservice
kmime
kpackage
eventviews
calendarsupport
akonadi-search
2021-12-02 18:15:18 +00:00
akonadi-contacts
akonadi-calendar-tools
kdepim-runtime
2022-12-12 20:10:28 +00:00
gpgme
pimcommon
mailcommon
messagelib
2021-12-02 18:15:18 +00:00
];
propagatedUserEnvPkgs = [ akonadi kdepim-runtime akonadi-search ];
2023-08-24 10:59:41 +00:00
qtWrapperArgs = [''--prefix PATH : "${lib.makeBinPath [ akonadi kdepim-runtime akonadi-search ]}"''];
2021-12-02 18:15:18 +00:00
meta = with lib; {
description = "A calendar application using Akonadi to sync with external services (Nextcloud, GMail, ...)";
2023-08-24 10:59:41 +00:00
homepage = "https://invent.kde.org/pim/merkuro";
2021-12-02 18:15:18 +00:00
license = licenses.gpl3Plus;
2023-02-05 14:15:52 +00:00
maintainers = with maintainers; [ Thra11 ];
2021-12-02 18:15:18 +00:00
platforms = platforms.linux;
};
}