Commit 755b915a authored by Alexis Hildebrandt's avatar Alexis Hildebrandt
Browse files

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/'
parent bf995e36
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -374,6 +374,7 @@ All versions of a package _must_ be included in `all-packages.nix` to make sure
* `meta.description` must:
  * Be short, just one sentence.
  * Be capitalized.
  * Not start with an indefinite article.
  * Not start with the package name.
    * More generally, it should not refer to the package name.
  * Not end with a period (or any punctuation for that matter).
+1 −1
Original line number Diff line number Diff line
@@ -66,7 +66,7 @@ stdenv.mkDerivation rec {
  passthru.tests.phosh = nixosTests.phosh;

  meta = with lib; {
    description = "A virtual keyboard supporting Wayland";
    description = "Virtual keyboard supporting Wayland";
    homepage = "https://gitlab.gnome.org/World/Phosh/squeekboard";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ artturin ];
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
  preInstall="mkdir -p $out/lib/ladspa";

  meta = {
    description = "A set of ambisonics ladspa plugins";
    description = "Set of ambisonics ladspa plugins";
    longDescription = ''
      Mono and stereo to B-format panning, horizontal rotator, square, hexagon and cube decoders.
    '';
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
  '';

  meta = {
    description = "a four-band parametric equaliser, which has the nice property of being stable even while parameters are being changed";
    description = "Four-band parametric equaliser, which has the nice property of being stable even while parameters are being changed";
    longDescription = ''
      Each section has an active/bypass switch, frequency, bandwidth and gain controls.
      There is also a global bypass switch and gain control.
+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {

  meta = with lib; {
    homepage = "https://dougal-s.github.io/Aether/";
    description = "An algorithmic reverb LV2 based on Cloudseed";
    description = "Algorithmic reverb LV2 based on Cloudseed";
    maintainers = [ maintainers.magnetophon ];
    platforms = platforms.linux;
    license = licenses.mit;
Loading