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:
committed by
Frederik Rietdijk
parent
3b06b8edb7
commit
f5fa5fa4d6
@@ -28,7 +28,7 @@ stdenv.mkDerivation {
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "http://www.analog.cx/";
|
||||
homepage = http://www.analog.cx/;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
description = "Powerful tool to generate web server statistics";
|
||||
maintainers = [ stdenv.lib.maintainers.peti ];
|
||||
|
||||
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Unprivileged sandboxing tool";
|
||||
homepage = "https://github.com/projectatomic/bubblewrap";
|
||||
homepage = https://github.com/projectatomic/bubblewrap;
|
||||
license = licenses.lgpl2Plus;
|
||||
maintainers = with maintainers; [ konimex ];
|
||||
};
|
||||
|
||||
@@ -71,7 +71,7 @@ stdenv.mkDerivation rec {
|
||||
version = version;
|
||||
# This package contains vendored dependencies. All have free licenses.
|
||||
license = licenses.free;
|
||||
homepage = "https://cloud.google.com/sdk/";
|
||||
homepage = https://cloud.google.com/sdk/;
|
||||
maintainers = with maintainers; [stephenmw zimbatm];
|
||||
platforms = with platforms; linux ++ darwin;
|
||||
};
|
||||
|
||||
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "NX compression proxy";
|
||||
homepage = "http://wiki.x2go.org/doku.php/wiki:libs:nx-libs";
|
||||
homepage = http://wiki.x2go.org/doku.php/wiki:libs:nx-libs;
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "http://simple-evcorr.sourceforge.net/";
|
||||
homepage = http://simple-evcorr.sourceforge.net/;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
description = "Simple Event Correlator";
|
||||
maintainers = [ stdenv.lib.maintainers.tv ];
|
||||
|
||||
@@ -17,7 +17,7 @@ pythonPackages.buildPythonApplication rec {
|
||||
propagatedBuildInputs = with pythonPackages; [ acme setuptools_scm ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/zenhack/simp_le";
|
||||
homepage = https://github.com/zenhack/simp_le;
|
||||
description = "Simple Let's Encrypt client";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ gebner nckx ];
|
||||
|
||||
@@ -62,7 +62,7 @@ stdenv.mkDerivation {
|
||||
|
||||
meta = {
|
||||
license = stdenv.lib.licenses.gpl2Plus;
|
||||
homepage = "http://vnc-tight.sourceforge.net/";
|
||||
homepage = http://vnc-tight.sourceforge.net/;
|
||||
description = "Improved version of VNC";
|
||||
|
||||
longDescription = ''
|
||||
|
||||
Reference in New Issue
Block a user