mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
18 lines
525 B
Nix
18 lines
525 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 ];
|
|
}
|