Captialize meta.description of all packages

In line with the Nixpkgs manual.

A mechanical change, done with this command:

  find pkgs -name "*.nix" | \
      while read f; do \
          sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \
      done

I manually skipped some:

* Descriptions starting with an abbreviation, a user name or package name
* Frequently generated expressions (haskell-packages.nix)
This commit is contained in:
Bjørn Forsman
2016-06-20 13:55:52 +02:00
parent 0880f1f335
commit bd01fad0ed
227 changed files with 277 additions and 277 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
doCheck = true;
meta = {
description = "free implementation of the OpenPGP standard for encrypting and signing data";
description = "Free implementation of the OpenPGP standard for encrypting and signing data";
homepage = http://www.gnupg.org/;
license = stdenv.lib.licenses.gpl3Plus;
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
+1 -1
View File
@@ -45,7 +45,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = "http://gnupg.org/";
description = "free implementation of the OpenPGP standard for encrypting and signing data";
description = "Free implementation of the OpenPGP standard for encrypting and signing data";
license = stdenv.lib.licenses.gpl3Plus;
longDescription = ''
+1 -1
View File
@@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
homepage = http://gnupg.org;
description = "a complete and free implementation of the OpenPGP standard";
description = "A complete and free implementation of the OpenPGP standard";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ wkennington peti fpletz ];
platforms = platforms.all;
+1 -1
View File
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
'';
meta = {
description = "multi-use cryptographic tool based on the STRIBOB algorithm";
description = "Multi-use cryptographic tool based on the STRIBOB algorithm";
homepage = "https://www.stribob.com/stricat/";
license = stdenv.lib.licenses.bsd3;
platforms = stdenv.lib.platforms.unix;
+1 -1
View File
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
homepage = https://www.torproject.org/projects/vidalia.html.en;
repositories.git = https://git.torproject.org/vidalia;
description = "a cross-platform graphical controller for the Tor software, built using the Qt framework";
description = "A cross-platform graphical controller for the Tor software, built using the Qt framework";
license = licenses.gpl2Plus;
maintainers = [ maintainers.phreedom ];
platforms = platforms.all;
+1 -1
View File
@@ -16,7 +16,7 @@ buildPythonApplication rec {
meta = with stdenv.lib; {
homepage = https://code.google.com/p/volatility;
description = "advanced memory forensics framework";
description = "Advanced memory forensics framework";
maintainers = with maintainers; [ bosu ];
license = stdenv.lib.licenses.gpl2Plus;
};