kalendar: init at 0.3.1
This commit is contained in:
parent
7343c157c1
commit
f469351a3d
2 changed files with 96 additions and 0 deletions
94
pkgs/applications/office/kalendar/default.nix
Normal file
94
pkgs/applications/office/kalendar/default.nix
Normal file
|
@ -0,0 +1,94 @@
|
|||
{ lib
|
||||
, mkDerivation
|
||||
, fetchFromGitLab
|
||||
, cmake
|
||||
, extra-cmake-modules
|
||||
, makeWrapper
|
||||
|
||||
, qtbase
|
||||
, qtquickcontrols2
|
||||
, qtsvg
|
||||
, qtlocation
|
||||
, qtdeclarative
|
||||
|
||||
, kirigami2
|
||||
, kdbusaddons
|
||||
, ki18n
|
||||
, kcalendarcore
|
||||
, kconfigwidgets
|
||||
, kwindowsystem
|
||||
, kcoreaddons
|
||||
, kcontacts
|
||||
, kitemmodels
|
||||
, kxmlgui
|
||||
, knotifications
|
||||
, kiconthemes
|
||||
, kservice
|
||||
, kmime
|
||||
, kpackage
|
||||
, eventviews
|
||||
, calendarsupport
|
||||
|
||||
, akonadi
|
||||
, akonadi-contacts
|
||||
, akonadi-calendar-tools
|
||||
, kdepim-runtime
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "kalendar";
|
||||
version = "0.3.1";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
domain = "invent.kde.org";
|
||||
owner = "pim";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-foG8j/MRbDZyzM9KmxEARfWUQXMz8ylQgersE1/gtnQ=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
extra-cmake-modules
|
||||
makeWrapper
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
qtbase
|
||||
qtquickcontrols2
|
||||
qtsvg
|
||||
qtlocation
|
||||
qtdeclarative
|
||||
|
||||
kirigami2
|
||||
kdbusaddons
|
||||
ki18n
|
||||
kcalendarcore
|
||||
kconfigwidgets
|
||||
kwindowsystem
|
||||
kcoreaddons
|
||||
kcontacts
|
||||
kitemmodels
|
||||
kxmlgui
|
||||
knotifications
|
||||
kiconthemes
|
||||
kservice
|
||||
kmime
|
||||
kpackage
|
||||
eventviews
|
||||
calendarsupport
|
||||
|
||||
akonadi-contacts
|
||||
akonadi-calendar-tools
|
||||
];
|
||||
|
||||
propagatedUserEnvPkgs = [ akonadi kdepim-runtime ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A calendar application using Akonadi to sync with external services (Nextcloud, GMail, ...)";
|
||||
homepage = "https://invent.kde.org/pim/kalendar/";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ chuangzhu ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -24928,6 +24928,8 @@ with pkgs;
|
|||
|
||||
icesl = callPackage ../applications/misc/icesl { };
|
||||
|
||||
kalendar = libsForQt5.callPackage ../applications/office/kalendar { };
|
||||
|
||||
keepassx = callPackage ../applications/misc/keepassx { };
|
||||
keepassx2 = callPackage ../applications/misc/keepassx/2.0.nix { };
|
||||
keepassxc = libsForQt5.callPackage ../applications/misc/keepassx/community.nix { };
|
||||
|
|
Loading…
Reference in a new issue