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 rec {
|
||||
release events.
|
||||
'';
|
||||
license = licenses.gpl2;
|
||||
homepage = "http://users.softlab.ece.ntua.gr/~thkala/projects/actkbd/";
|
||||
homepage = http://users.softlab.ece.ntua.gr/~thkala/projects/actkbd/;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with stdenv.lib;
|
||||
{ description = "Intel AMT® SoL client + tools";
|
||||
homepage = "https://www.kraxel.org/cgit/amtterm/";
|
||||
homepage = https://www.kraxel.org/cgit/amtterm/;
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.ehmry ];
|
||||
platforms = platforms.linux;
|
||||
|
||||
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||
longDescription = ''
|
||||
A commandline program that chases symbolic filesystems links to the original file
|
||||
'';
|
||||
homepage = "https://qa.debian.org/developer.php?login=rotty%40debian.org";
|
||||
homepage = https://qa.debian.org/developer.php?login=rotty%40debian.org;
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = [ maintainers.polyrod ];
|
||||
platforms = platforms.all;
|
||||
|
||||
@@ -18,7 +18,7 @@ buildGoPackage rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Concise commandline monitoring for containers";
|
||||
homepage = "http://ctop.sh/";
|
||||
homepage = http://ctop.sh/;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ apeyroux ];
|
||||
};
|
||||
|
||||
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
|
||||
buildInputs = [ cmake gettext ];
|
||||
|
||||
meta = {
|
||||
homepage = "http://projects.gw-computing.net/projects/dfc";
|
||||
homepage = http://projects.gw-computing.net/projects/dfc;
|
||||
description = "Displays file system space usage using graphs and colors";
|
||||
license="free";
|
||||
maintainers = with stdenv.lib.maintainers; [qknight];
|
||||
|
||||
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://lwn.net/Articles/421072/";
|
||||
homepage = http://lwn.net/Articles/421072/;
|
||||
description = "cat replacement";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ qknight ];
|
||||
|
||||
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://git.kernel.dk/?p=fio.git;a=summary";
|
||||
homepage = "http://git.kernel.dk/?p=fio.git;a=summary;";
|
||||
description = "Flexible IO Tester - an IO benchmark tool";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.unix;
|
||||
|
||||
@@ -21,7 +21,7 @@ stdenv.mkDerivation {
|
||||
buildInputs = [ unzip ];
|
||||
|
||||
meta = {
|
||||
homepage = "http://pkgs.fedoraproject.org/cgit/hardlink.git/";
|
||||
homepage = http://pkgs.fedoraproject.org/cgit/hardlink.git/;
|
||||
description = "Consolidate duplicate files via hardlinks";
|
||||
license = stdenv.lib.licenses.gpl2Plus;
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||
preConfigure = "./bootstrap";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://www.nersc.gov/users/computational-systems/cori/nersc-8-procurement/trinity-nersc-8-rfp/nersc-8-trinity-benchmarks/ior/";
|
||||
homepage = http://www.nersc.gov/users/computational-systems/cori/nersc-8-procurement/trinity-nersc-8-rfp/nersc-8-trinity-benchmarks/ior/;
|
||||
description = "Parallel file system I/O performance test";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
|
||||
@@ -36,7 +36,7 @@ buildPythonPackage rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "journalwatch is a tool to find error messages in the systemd journal.";
|
||||
homepage = "https://github.com/The-Compiler/journalwatch";
|
||||
homepage = https://github.com/The-Compiler/journalwatch;
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ florianjacob ];
|
||||
};
|
||||
|
||||
@@ -17,7 +17,7 @@ stdenv.mkDerivation {
|
||||
makeFlags = "PREFIX=$(out)";
|
||||
|
||||
meta = {
|
||||
homepage = "http://github.com/chneukirchen/lr";
|
||||
homepage = http://github.com/chneukirchen/lr;
|
||||
description = "List files recursively";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
|
||||
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
meta = with lib; {
|
||||
description = "Unix command line queue utility";
|
||||
homepage = "https://github.com/chneukirchen/nq";
|
||||
homepage = https://github.com/chneukirchen/nq;
|
||||
license = licenses.publicDomain;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ cstrahan ];
|
||||
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A tool to dump OpenCL platform/device information";
|
||||
homepage = "https://github.com/marchv/opencl-info";
|
||||
homepage = https://github.com/marchv/opencl-info;
|
||||
license = licenses.mit;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
|
||||
@@ -71,7 +71,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "SQL powered operating system instrumentation, monitoring, and analytics";
|
||||
homepage = "https://osquery.io/";
|
||||
homepage = https://osquery.io/;
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ cstrahan ];
|
||||
|
||||
@@ -56,7 +56,7 @@ stdenv.mkDerivation rec {
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://swtch.com/plan9port/";
|
||||
homepage = http://swtch.com/plan9port/;
|
||||
description = "Plan 9 from User Space";
|
||||
license = licenses.lpl-102;
|
||||
maintainers = with maintainers; [ ftrvxmtrx kovirobi ];
|
||||
|
||||
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Graphical hardware monitoring application for Linux";
|
||||
homepage = "https://wpitchoune.net/psensor/";
|
||||
homepage = https://wpitchoune.net/psensor/;
|
||||
license = licenses.mit;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ cstrahan ];
|
||||
|
||||
@@ -105,7 +105,7 @@ stdenv.mkDerivation rec {
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = "http://www.rsyslog.com/";
|
||||
homepage = http://www.rsyslog.com/;
|
||||
description = "Enhanced syslog implementation";
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.linux;
|
||||
|
||||
@@ -49,7 +49,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with stdenv.lib; {
|
||||
description = "UNIX init scheme with service supervision";
|
||||
license = licenses.bsd3;
|
||||
homepage = "http://smarden.org/runit";
|
||||
homepage = http://smarden.org/runit;
|
||||
maintainers = with maintainers; [ rickynils joachifm ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
|
||||
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/balabit/syslog-ng-incubator";
|
||||
homepage = https://github.com/balabit/syslog-ng-incubator;
|
||||
description = "A collection of tools and modules for syslog-ng";
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.rickynils ];
|
||||
|
||||
@@ -53,7 +53,7 @@ stdenv.mkDerivation rec {
|
||||
outputs = [ "out" "man" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://www.balabit.com/network-security/syslog-ng/";
|
||||
homepage = http://www.balabit.com/network-security/syslog-ng/;
|
||||
description = "Next-generation syslogd with advanced networking and filtering capabilities";
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ rickynils fpletz ];
|
||||
|
||||
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Thermal Daemon";
|
||||
homepage = "https://01.org/linux-thermal-daemon";
|
||||
homepage = https://01.org/linux-thermal-daemon;
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
|
||||
@@ -16,7 +16,7 @@ stdenv.mkDerivation {
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://vicerveza.homeunix.net/~viric/soft/tm";
|
||||
homepage = http://vicerveza.homeunix.net/~viric/soft/tm;
|
||||
description = "Terminal mixer - multiplexer for the i/o of terminal applications";
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ viric ];
|
||||
|
||||
@@ -42,7 +42,7 @@ stdenv.mkDerivation {
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "http://mama.indstate.edu/users/ice/tree/";
|
||||
homepage = http://mama.indstate.edu/users/ice/tree/;
|
||||
description = "Command to produce a depth indented directory listing";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://vicerveza.homeunix.net/~viric/soft/ts";
|
||||
homepage = http://vicerveza.homeunix.net/~viric/soft/ts;
|
||||
description = "Task spooler - batch queue";
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ viric ];
|
||||
|
||||
@@ -13,7 +13,7 @@ stdenv.mkDerivation {
|
||||
'';
|
||||
meta = {
|
||||
description = "Tiny helper utility to force programs which insist on daemonizing themselves to run in the foreground";
|
||||
homepage = "https://github.com/nickstenning/undaemonize";
|
||||
homepage = https://github.com/nickstenning/undaemonize;
|
||||
license = stdenv.lib.licenses.mit;
|
||||
maintainers = [ stdenv.lib.maintainers.canndrew ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
|
||||
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Simple xargs and apply replacement";
|
||||
homepage = "https://github.com/chneukirchen/xe";
|
||||
homepage = https://github.com/chneukirchen/xe;
|
||||
license = licenses.publicDomain;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ cstrahan ndowens ];
|
||||
|
||||
Reference in New Issue
Block a user