pkgs: refactor needless quoting of homepage meta attribute (#27809)

* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
This commit is contained in:
Silvan Mosberger
2017-08-01 22:03:30 +02:00
committed by Frederik Rietdijk
parent 3b06b8edb7
commit f5fa5fa4d6
1394 changed files with 1449 additions and 1451 deletions

View File

@@ -158,7 +158,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Smart and user-friendly command line shell";
homepage = "http://fishshell.com/";
homepage = http://fishshell.com/;
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = with maintainers; [ ocharles ];

View File

@@ -19,7 +19,7 @@ stdenv.mkDerivation {
meta = with stdenv.lib; {
description = "A ZSH theme optimized for people who use Git & Unicode-compatible fonts and terminals";
homepage = "https://github.com/halfo/lambda-mod-zsh-theme/";
homepage = https://github.com/halfo/lambda-mod-zsh-theme/;
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ ma27 ];

View File

@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
also to be readily available under other UNIX(R)-like operating
systems.
'';
homepage = "https://www.mirbsd.org/mksh.htm";
homepage = https://www.mirbsd.org/mksh.htm;
license = licenses.bsd3;
maintainers = with maintainers; [ AndersonTorres nckx joachifm ];
platforms = platforms.unix;

View File

@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
'';
meta = {
homepage = "http://github.com/spwhitt/nix-zsh-completions";
homepage = http://github.com/spwhitt/nix-zsh-completions;
description = "ZSH completions for Nix, NixOS, and NixOps";
license = stdenv.lib.licenses.bsd3;
platforms = stdenv.lib.platforms.all;

View File

@@ -80,7 +80,7 @@ stdenv.mkDerivation rec {
longDescription = ''
rssh also includes support for rsync and cvs. For example, if you have a server which you only want to allow users to copy files off of via scp, without providing shell access, you can use rssh to do that.
'';
homepage = "http://www.pizzashack.org/rssh/";
homepage = http://www.pizzashack.org/rssh/;
license = licenses.bsd2;
platforms = platforms.linux;
maintainers = with maintainers; [ arobyn ];

View File

@@ -39,7 +39,7 @@ python3Packages.buildPythonApplication rec {
meta = with stdenv.lib; {
description = "A Python-ish, BASHwards-compatible shell";
homepage = "http://xonsh.org";
homepage = http://xonsh.org;
license = licenses.bsd3;
maintainers = with maintainers; [ spwhitt garbas vrthra ];
platforms = platforms.all;

View File

@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Fish shell autosuggestions for Zsh";
homepage = "https://github.com/zsh-users/zsh-autosuggestions";
homepage = https://github.com/zsh-users/zsh-autosuggestions;
license = licenses.mit;
platforms = platforms.unix;
maintainers = [ maintainers.loskutov ];

View File

@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Additional completion definitions for zsh";
homepage = "https://github.com/zsh-users/zsh-completions";
homepage = https://github.com/zsh-users/zsh-completions;
license = stdenv.lib.licenses.free;
platforms = stdenv.lib.platforms.unix;

View File

@@ -38,7 +38,7 @@ in stdenv.mkDerivation rec {
'';
meta = with stdenv.lib; {
description = "Prezto is the configuration framework for Zsh; it enriches the command line interface environment with sane defaults, aliases, functions, auto completion, and prompt themes.";
homepage = "https://github.com/sorin-ionescu/prezto";
homepage = https://github.com/sorin-ionescu/prezto;
license = licenses.mit;
maintainers = with maintainers; [ garbas ];
platforms = with platforms; unix;

View File

@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Fish shell like syntax highlighting for Zsh";
homepage = "https://github.com/zsh-users/zsh-syntax-highlighting";
homepage = https://github.com/zsh-users/zsh-syntax-highlighting;
license = licenses.bsd3;
platforms = platforms.unix;
maintainers = [ maintainers.loskutov ];

View File

@@ -76,7 +76,7 @@ EOF
a host of other features.
'';
license = "MIT-like";
homepage = "http://www.zsh.org/";
homepage = http://www.zsh.org/;
maintainers = with stdenv.lib.maintainers; [ chaoflow pSub ];
platforms = stdenv.lib.platforms.unix;
};