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
@@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
|
||||
stdenv.lib.optionals linkStatic [ "--enable-static" "--disable-shared" ];
|
||||
|
||||
meta = {
|
||||
homepage = "http://www.bzip.org";
|
||||
homepage = http://www.bzip.org;
|
||||
description = "High-quality data compression program";
|
||||
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
|
||||
@@ -26,7 +26,7 @@ in pythonPackages.buildPythonApplication rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Do The Right Extraction: A tool for taking the hassle out of extracting archives";
|
||||
homepage = "http://brettcsmith.org/2007/dtrx/";
|
||||
homepage = http://brettcsmith.org/2007/dtrx/;
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = [ maintainers.spwhitt ];
|
||||
platforms = platforms.all;
|
||||
|
||||
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://lbzip2.org/";
|
||||
homepage = http://lbzip2.org/;
|
||||
description = "Parallel bzip2 compression utility";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
|
||||
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
homepage = "http://www.nongnu.org/lzip/lzip.html";
|
||||
homepage = http://www.nongnu.org/lzip/lzip.html;
|
||||
description = "A lossless data compressor based on the LZMA algorithm";
|
||||
license = stdenv.lib.licenses.gpl3Plus;
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
|
||||
@@ -29,6 +29,6 @@ stdenv.mkDerivation rec {
|
||||
license = stdenv.lib.licenses.bsd2;
|
||||
maintainers = [stdenv.lib.maintainers.raskin];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
homepage = "https://gist.githubusercontent.com/Tblue/62ff47bef7f894e92ed5";
|
||||
homepage = https://gist.githubusercontent.com/Tblue/62ff47bef7f894e92ed5;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -25,7 +25,7 @@ stdenv.mkDerivation {
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "http://www.zlib.net/pigz/";
|
||||
homepage = http://www.zlib.net/pigz/;
|
||||
description = "A parallel implementation of gzip for multi-core machines";
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
};
|
||||
|
||||
@@ -31,7 +31,7 @@ stdenv.mkDerivation {
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "https://jnovy.fedorapeople.org/pxz/";
|
||||
homepage = https://jnovy.fedorapeople.org/pxz/;
|
||||
license = stdenv.lib.licenses.gpl2Plus;
|
||||
maintainers = with stdenv.lib.maintainers; [pashev];
|
||||
description = ''Parallel XZ is a compression utility that takes advantage of
|
||||
|
||||
Reference in New Issue
Block a user