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
@@ -20,7 +20,7 @@ stdenv.mkDerivation {
|
||||
createFindlibDestdir = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://forge.ocamlcore.org/projects/ansiterminal";
|
||||
homepage = https://forge.ocamlcore.org/projects/ansiterminal;
|
||||
description = "A module allowing to use the colors and cursor movements on ANSI terminals";
|
||||
longDescription = ''
|
||||
ANSITerminal is a module allowing to use the colors and cursor
|
||||
|
||||
@@ -47,7 +47,7 @@ EOF
|
||||
checkTarget = "tests";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://bolt.x9c.fr";
|
||||
homepage = http://bolt.x9c.fr;
|
||||
description = "A logging tool for the OCaml language";
|
||||
longDescription = ''
|
||||
Bolt is a logging tool for the OCaml language. It is inspired by and
|
||||
|
||||
@@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
|
||||
preBuild = "mkdir -p $out/lib/ocaml/${ocaml.version}/site-lib/cryptokit";
|
||||
|
||||
meta = {
|
||||
homepage = "http://pauillac.inria.fr/~xleroy/software.html";
|
||||
homepage = http://pauillac.inria.fr/~xleroy/software.html;
|
||||
description = "A library of cryptographic primitives for OCaml";
|
||||
platforms = ocaml.meta.platforms or [];
|
||||
maintainers = [
|
||||
|
||||
@@ -10,7 +10,7 @@ buildOcaml rec {
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://estring.forge.ocamlcore.org/";
|
||||
homepage = http://estring.forge.ocamlcore.org/;
|
||||
description = "Extension for string literals";
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
|
||||
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "OCaml library for syntax highlighting";
|
||||
homepage = "https://zoggy.github.io/higlo/";
|
||||
homepage = https://zoggy.github.io/higlo/;
|
||||
license = licenses.lgpl3;
|
||||
platforms = ocaml.meta.platforms or [];
|
||||
maintainers = with maintainers; [ regnat ];
|
||||
|
||||
@@ -38,7 +38,7 @@ stdenv.mkDerivation {
|
||||
installPhase = "ocaml setup.ml -install";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://forge.ocamlcore.org/projects/cairo";
|
||||
homepage = http://forge.ocamlcore.org/projects/cairo;
|
||||
description = "Binding to Cairo, a 2D Vector Graphics Library";
|
||||
longDescription = ''
|
||||
This is a binding to Cairo, a 2D graphics library with support for
|
||||
|
||||
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
|
||||
meta = {
|
||||
homepage = "http://ocaml-text.forge.ocamlcore.org/";
|
||||
homepage = http://ocaml-text.forge.ocamlcore.org/;
|
||||
description = "A library for convenient text manipulation";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
platforms = ocaml.meta.platforms or [];
|
||||
|
||||
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||
createFindlibDestdir = true;
|
||||
|
||||
meta = {
|
||||
homepage = "http://sourceforge.net/projects/ocamlfuse";
|
||||
homepage = http://sourceforge.net/projects/ocamlfuse;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
description = "ocaml binding for fuse";
|
||||
maintainers = with stdenv.lib.maintainers; [ bennofs ];
|
||||
|
||||
@@ -21,7 +21,7 @@ in stdenv.mkDerivation {
|
||||
setupHook = ./setup-hook.sh;
|
||||
|
||||
meta = {
|
||||
homepage = "http://www.ocaml.info/home/ocaml_sources.html";
|
||||
homepage = http://www.ocaml.info/home/ocaml_sources.html;
|
||||
description = "Generic OCaml Makefile for GNU Make";
|
||||
license = "LGPL";
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
|
||||
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "OCaml library to read and write configuration options in JSON syntax";
|
||||
homepage = "https://zoggy.github.io/ocf/";
|
||||
homepage = https://zoggy.github.io/ocf/;
|
||||
license = licenses.lgpl3;
|
||||
platforms = ocaml.meta.platforms or [];
|
||||
maintainers = with maintainers; [ regnat ];
|
||||
|
||||
@@ -19,7 +19,7 @@ buildOcaml {
|
||||
configurePhase = "true"; # Skip configure phase
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://bitbucket.org/mmottl/pcre-ocaml";
|
||||
homepage = https://bitbucket.org/mmottl/pcre-ocaml;
|
||||
description = "An efficient C-library for pattern matching with Perl-style regular expressions in OCaml";
|
||||
license = licenses.lgpl21;
|
||||
platforms = ocaml.meta.platforms or [];
|
||||
|
||||
@@ -12,7 +12,7 @@ buildOcaml rec {
|
||||
buildInputs = [ ppx_tools ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/johnwhitington/ppx_blob";
|
||||
homepage = https://github.com/johnwhitington/ppx_blob;
|
||||
description = "OCaml ppx to include binary data from a file as a string";
|
||||
license = licenses.unlicense;
|
||||
};
|
||||
|
||||
@@ -43,7 +43,7 @@ in stdenv.mkDerivation {
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "http://github.com/chemoelectric/pycaml";
|
||||
homepage = http://github.com/chemoelectric/pycaml;
|
||||
description = "Bindings for python and ocaml";
|
||||
license = "LGPL";
|
||||
platforms = ocaml.meta.platforms or [];
|
||||
|
||||
@@ -12,7 +12,7 @@ buildOcaml rec {
|
||||
propagatedBuildInputs = [ ocaml_batteries csv ocaml_lwt ocaml_sqlite3 estring ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://github.com/mfp/ocaml-sqlexpr";
|
||||
homepage = http://github.com/mfp/ocaml-sqlexpr;
|
||||
description = "Type-safe, convenient SQLite database access";
|
||||
license = licenses.lgpl21;
|
||||
};
|
||||
|
||||
@@ -17,7 +17,7 @@ stdenv.mkDerivation {
|
||||
createFindlibDestdir = true;
|
||||
|
||||
meta = {
|
||||
homepage = "http://forge.ocamlcore.org/projects/type-conv/";
|
||||
homepage = http://forge.ocamlcore.org/projects/type-conv/;
|
||||
description = "Support library for OCaml preprocessor type conversions";
|
||||
license = stdenv.lib.licenses.lgpl21;
|
||||
platforms = ocaml.meta.platforms or [];
|
||||
|
||||
@@ -12,7 +12,7 @@ buildOcaml rec {
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/janestreet/type_conv/";
|
||||
homepage = https://github.com/janestreet/type_conv/;
|
||||
description = "Support library for preprocessor type conversions";
|
||||
license = stdenv.lib.licenses.asl20;
|
||||
maintainers = with stdenv.lib.maintainers; [ z77z ericbmerritt ];
|
||||
|
||||
@@ -35,7 +35,7 @@ stdenv.mkDerivation {
|
||||
entirely written in OCaml, hence it does not require additional C
|
||||
library.
|
||||
'';
|
||||
homepage = "http://tech.motion-twin.com/xmllight.html";
|
||||
homepage = http://tech.motion-twin.com/xmllight.html;
|
||||
license = stdenv.lib.licenses.lgpl21;
|
||||
maintainers = [ stdenv.lib.maintainers.romildo ];
|
||||
platforms = ocaml.meta.platforms or [];
|
||||
|
||||
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Xml template library for OCaml";
|
||||
homepage = "https://zoggy.github.io/xtmpl/";
|
||||
homepage = https://zoggy.github.io/xtmpl/;
|
||||
license = licenses.lgpl3;
|
||||
platforms = ocaml.meta.platforms or [];
|
||||
maintainers = with maintainers; [ regnat ];
|
||||
|
||||
Reference in New Issue
Block a user