27 lines
552 B
Nix
27 lines
552 B
Nix
{
|
|
mkDerivation,
|
|
lib,
|
|
extra-cmake-modules,
|
|
akonadi-calendar,
|
|
boost,
|
|
kontactinterface,
|
|
krunner,
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "zanshin";
|
|
meta = with lib; {
|
|
description = "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
|
|
];
|
|
}
|