nixpkgs/pkgs/applications/kde/zanshin.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
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/'
2024-06-09 23:07:45 +02:00

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