about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/zanshin.nix
blob: a43632ce362cb29606fad4e540edfded50244cf7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  mkDerivation, lib,
  extra-cmake-modules,
  akonadi-calendar, boost, kontactinterface, krunner
}:

mkDerivation {
  pname = "zanshin";
  meta = with lib; {
    description = "A powerful yet simple application to manage your day to day actions, getting your mind like water";
    homepage = "https://zanshin.kde.org/";
    maintainers = with maintainers; [ zraexy ];
    license = licenses.gpl2Plus;
  };

  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ akonadi-calendar boost kontactinterface krunner ];
}