19 lines
527 B
Nix
19 lines
527 B
Nix
{
|
|
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 ];
|
|
}
|