summary refs log tree commit diff
path: root/pkgs/applications/office/zanshin/default.nix
blob: 57947e23baa02990968f6706cc8cb7f8b13e8dd6 (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.0";

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

  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;
  };
}