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

@@ -26,7 +26,7 @@ stdenv.mkDerivation {
'';
meta = {
homepage = "http://github.com/opencollab/arpack-ng";
homepage = http://github.com/opencollab/arpack-ng;
description = ''
A collection of Fortran77 subroutines to solve large scale eigenvalue
problems.

View File

@@ -101,7 +101,7 @@ stdenv.mkDerivation {
'';
meta = {
homepage = "http://math-atlas.sourceforge.net/";
homepage = http://math-atlas.sourceforge.net/;
description = "Automatically Tuned Linear Algebra Software (ATLAS)";
license = stdenv.lib.licenses.bsd3;
platforms = stdenv.lib.platforms.unix;

View File

@@ -56,7 +56,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Basic Linear Algebra Subprograms";
license = stdenv.lib.licenses.publicDomain;
homepage = "http://www.netlib.org/blas/";
homepage = http://www.netlib.org/blas/;
platforms = stdenv.lib.platforms.unix;
};
}

View File

@@ -40,7 +40,7 @@ stdenv.mkDerivation rec {
meta = {
description = "NVIDIA CUDA Deep Neural Network library (cuDNN)";
homepage = "https://developer.nvidia.com/cudnn";
homepage = https://developer.nvidia.com/cudnn;
license = stdenv.lib.licenses.unfree;
};
}

View File

@@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "NVIDIA CUDA Deep Neural Network library (cuDNN)";
homepage = "https://developer.nvidia.com/cudnn";
homepage = https://developer.nvidia.com/cudnn;
license = stdenv.lib.licenses.unfree;
maintainers = with maintainers; [ mdaiter ];
};

View File

@@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "NVIDIA CUDA Deep Neural Network library (cuDNN)";
homepage = "https://developer.nvidia.com/cudnn";
homepage = https://developer.nvidia.com/cudnn;
license = stdenv.lib.licenses.unfree;
maintainers = with maintainers; [ mdaiter ];
};

View File

@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
meta = {
description = "NVIDIA CUDA Deep Neural Network library (cuDNN)";
homepage = "https://developer.nvidia.com/cudnn";
homepage = https://developer.nvidia.com/cudnn;
license = stdenv.lib.licenses.unfree;
};
}

View File

@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "A software package for large-scale nonlinear optimization";
homepage = "https://projects.coin-or.org/Ipopt";
homepage = https://projects.coin-or.org/Ipopt;
license = licenses.epl10;
platforms = platforms.unix;
maintainers = with maintainers; [ abbradar ];

View File

@@ -57,7 +57,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
inherit version;
description = "Linear Algebra PACKage";
homepage = "http://www.netlib.org/lapack/";
homepage = http://www.netlib.org/lapack/;
license = licenses.bsd3;
platforms = platforms.all;
};

View File

@@ -57,7 +57,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
inherit version;
description = "Linear Algebra PACKage";
homepage = "http://www.netlib.org/lapack/";
homepage = http://www.netlib.org/lapack/;
license = licenses.bsd3;
platforms = platforms.all;
};

View File

@@ -39,7 +39,7 @@ in stdenv.mkDerivation {
meta = with stdenv.lib; {
description = "Matrix Algebra on GPU and Multicore Architectures";
license = licenses.bsd3;
homepage = "http://icl.cs.utk.edu/magma/index.html";
homepage = http://icl.cs.utk.edu/magma/index.html;
platforms = platforms.unix;
maintainers = with maintainers; [ ianwookim ];
};

View File

@@ -108,7 +108,7 @@ stdenv.mkDerivation {
meta = with stdenv.lib; {
description = "Basic Linear Algebra Subprograms";
license = licenses.bsd3;
homepage = "https://github.com/xianyi/OpenBLAS";
homepage = https://github.com/xianyi/OpenBLAS;
platforms = platforms.unix;
maintainers = with maintainers; [ ttuegel ];
};

View File

@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
meta = {
description = "High quality system independent, portable, open source libm implementation";
homepage = "http://www.openlibm.org/";
homepage = http://www.openlibm.org/;
license = stdenv.lib.licenses.mit;
maintainers = [ stdenv.lib.maintainers.ttuegel ];
platforms = stdenv.lib.platforms.all;

View File

@@ -13,7 +13,7 @@ stdenv.mkDerivation {
meta = {
description = "A collection of special mathematical functions";
homepage = "https://github.com/JuliaLang/openspecfun";
homepage = https://github.com/JuliaLang/openspecfun;
license = stdenv.lib.licenses.mit;
maintainers = [ stdenv.lib.maintainers.ttuegel ];
platforms = stdenv.lib.platforms.all;