summary refs log tree commit diff
path: root/pkgs/applications/kde/knotes.nix
blob: 2dc2f48c1497575dbc5307abbb6685b8e8e8768a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
  mkDerivation,
  extra-cmake-modules, kdoctools,
  kcompletion, kconfig, kconfigwidgets, kcoreaddons, kcrash,
  kdbusaddons, kdnssd, kglobalaccel, kiconthemes, kitemmodels,
  kitemviews, kcmutils, knewstuff, knotifications, knotifyconfig,
  kparts, ktextwidgets, kwidgetsaddons, kwindowsystem,
  kdelibs4support,
  grantlee, grantleetheme, qtx11extras,
  akonadi, akonadi-notes, akonadi-search, kcalutils,
  kontactinterface, libkdepim, kmime, pimcommon, kpimtextedit,
  kcalendarcore
}:

mkDerivation {
  name = "knotes";
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [
    kcompletion kconfig kconfigwidgets kcoreaddons kcrash
    kdbusaddons kdnssd kglobalaccel kiconthemes kitemmodels kitemviews
    kcmutils knewstuff knotifications knotifyconfig kparts ktextwidgets
    kwidgetsaddons kwindowsystem kdelibs4support
    grantlee grantleetheme qtx11extras
    akonadi akonadi-notes kcalutils kontactinterface
    libkdepim kmime pimcommon kpimtextedit
    akonadi-search
    kcalendarcore
  ];
}