about summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorAndré Vitor de Lima Matos <andre.vmatos@gmail.com>2022-04-21 13:42:02 -0300
committerAndré Vitor de Lima Matos <andre.vmatos@gmail.com>2022-04-24 19:05:45 -0300
commit18d5c05315ce4e84bc0d7e040e5cf7561f3d8bfc (patch)
tree8a2962af124ded5aa5a8900f80cab8e94ed3bfc8 /pkgs/applications/office
parent25278f97f4f5592ed1913dc4a84f54b6d9456c3a (diff)
kalendar: move into/use kde/gear distribution from 22.04
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/kalendar/default.nix103
1 files changed, 0 insertions, 103 deletions
diff --git a/pkgs/applications/office/kalendar/default.nix b/pkgs/applications/office/kalendar/default.nix
deleted file mode 100644
index 32cc2f5de57c7..0000000000000
--- a/pkgs/applications/office/kalendar/default.nix
+++ /dev/null
@@ -1,103 +0,0 @@
-{ lib
-, mkDerivation
-, fetchFromGitLab
-, cmake
-, extra-cmake-modules
-, makeWrapper
-
-, qtbase
-, qtquickcontrols2
-, qtsvg
-, qtlocation
-, qtdeclarative
-, qqc2-desktop-style
-
-, kirigami2
-, kdbusaddons
-, ki18n
-, kcalendarcore
-, kconfigwidgets
-, kwindowsystem
-, kcoreaddons
-, kcontacts
-, kitemmodels
-, kxmlgui
-, knotifications
-, kiconthemes
-, kservice
-, kmime
-, kpackage
-, eventviews
-, calendarsupport
-
-, akonadi
-, akonadi-search
-, akonadi-contacts
-, akonadi-calendar-tools
-, kdepim-runtime
-}:
-
-mkDerivation rec {
-  pname = "kalendar";
-  version = "1.0.0";
-
-  src = fetchFromGitLab {
-    domain = "invent.kde.org";
-    owner = "pim";
-    repo = pname;
-    rev = "v${version}";
-    sha256 = "sha256-kjtLVU+8wbIa7R6J1XOjuvS3AnJNngxNBCx24Dy1QzM=";
-  };
-
-  nativeBuildInputs = [
-    cmake
-    extra-cmake-modules
-    makeWrapper
-  ];
-
-  buildInputs = [
-    qtbase
-    qtquickcontrols2
-    qtsvg
-    qtlocation
-    qtdeclarative
-    qqc2-desktop-style
-
-    kirigami2
-    kdbusaddons
-    ki18n
-    kcalendarcore
-    kconfigwidgets
-    kwindowsystem
-    kcoreaddons
-    kcontacts
-    kitemmodels
-    kxmlgui
-    knotifications
-    kiconthemes
-    kservice
-    kmime
-    kpackage
-    eventviews
-    calendarsupport
-
-    akonadi-search
-    akonadi-contacts
-    akonadi-calendar-tools
-    kdepim-runtime
-  ];
-
-  propagatedUserEnvPkgs = [ akonadi kdepim-runtime akonadi-search ];
-  postFixup = ''
-    wrapProgram "$out/bin/kalendar" \
-      --prefix PATH : "${lib.makeBinPath [ akonadi kdepim-runtime akonadi-search ]}"
-  '';
-
-  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;
-  };
-}