about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/office/zanshin/default.nix
blob: d0d8374e64c39f88da6d4f4773ad7e1b78dedee0 (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
30
31
32
33
34
35
36
37
38
{ mkDerivation
, lib
, fetchurl
, extra-cmake-modules
, boost
, akonadi-calendar
, kontactinterface
, krunner
}:

mkDerivation rec {
  pname = "zanshin";
  version = "21.12.2";

  src = fetchurl {
    url = "mirror://kde/stable/release-service/${version}/src/zanshin-${version}.tar.xz";
    sha256 = "sha256-zMCV4KIrqeKHEsMbqEbnm/DgQiGxZbZXDVMuSSrXj8Y=";
  };

  nativeBuildInputs = [
    extra-cmake-modules
  ];

  buildInputs = [
    boost
    akonadi-calendar
    kontactinterface
    krunner
  ];

  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 ];
    platforms = platforms.linux;
    license = licenses.gpl2Plus;
  };
}