treewide: fix redirected urls
According to https://repology.org/repository/nix_unstable/problems, we have a lot of packages that have http links that redirect to https as their homepage. This commit updates all these packages to use the https links as their homepage. The following script was used to make these updates: ``` curl https://repology.org/api/v1/repository/nix_unstable/problems \ | jq '.[] | .problem' -r \ | rg 'Homepage link "(.+)" is a permanent redirect to "(.+)" and should be updated' --replace 's@$1@$2@' \ | sort | uniq > script.sed find -name '*.nix' | xargs -P4 -- sed -f script.sed -i ```
This commit is contained in:
@@ -12,7 +12,7 @@ buildPythonPackage rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A very fast JSON encoder/decoder for Python";
|
||||
homepage = http://ag-projects.com/;
|
||||
homepage = https://ag-projects.com/;
|
||||
license = licenses.lgpl2;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -23,7 +23,7 @@ buildPythonPackage rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Eventlib bindings for python";
|
||||
homepage = "http://ag-projects.com/";
|
||||
homepage = "https://ag-projects.com/";
|
||||
license = licenses.lgpl2;
|
||||
};
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@ buildPythonPackage rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A robust materials analysis code that defines core object representations for structures and molecules";
|
||||
homepage = http://pymatgen.org/;
|
||||
homepage = https://pymatgen.org/;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ psyanticy ];
|
||||
};
|
||||
|
||||
@@ -30,7 +30,7 @@ buildPythonPackage rec {
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://pysqlite.org/;
|
||||
homepage = https://pysqlite.org/;
|
||||
description = "Python bindings for the SQLite embedded relational database engine";
|
||||
longDescription = ''
|
||||
pysqlite is a DB-API 2.0-compliant database interface for SQLite.
|
||||
|
||||
@@ -35,7 +35,7 @@ buildPythonPackage rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "SIP SIMPLE implementation for Python";
|
||||
homepage = http://sipsimpleclient.org/;
|
||||
homepage = https://sipsimpleclient.org/;
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ pSub ];
|
||||
};
|
||||
|
||||
@@ -5,7 +5,7 @@ buildPythonPackage rec {
|
||||
version = "3.2b1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.stringtemplate.org/download/${pname}-${version}.tar.gz";
|
||||
url = "https://www.stringtemplate.org/download/${pname}-${version}.tar.gz";
|
||||
sha256 = "0lbib0l8c1q7i1j610rwcdagymr1idahrql4dkgnm5rzyg2vk3ml";
|
||||
};
|
||||
|
||||
@@ -17,7 +17,7 @@ buildPythonPackage rec {
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
homepage = http://www.stringtemplate.org/;
|
||||
homepage = https://www.stringtemplate.org/;
|
||||
description = "Text Templating Library";
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
|
||||
@@ -52,7 +52,7 @@ buildPythonPackage rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Higher-level text processing, built on spaCy";
|
||||
homepage = "http://textacy.readthedocs.io/";
|
||||
homepage = "https://textacy.readthedocs.io/";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ rvl ];
|
||||
};
|
||||
|
||||
@@ -42,7 +42,7 @@ def test_umap_transform_on_iris()"
|
||||
|
||||
meta = with lib; {
|
||||
description = "Uniform Manifold Approximation and Projection";
|
||||
homepage = http://github.com/lmcinnes/umap;
|
||||
homepage = https://github.com/lmcinnes/umap;
|
||||
license = licenses.bsd3;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
};
|
||||
|
||||
@@ -38,7 +38,7 @@ buildPythonPackage rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Fast implementation of asyncio event loop on top of libuv";
|
||||
homepage = http://github.com/MagicStack/uvloop;
|
||||
homepage = https://github.com/MagicStack/uvloop;
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
};
|
||||
|
||||
@@ -22,7 +22,7 @@ buildPythonPackage rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A library for deferring decorator actions";
|
||||
homepage = http://pylonsproject.org/;
|
||||
homepage = https://pylonsproject.org/;
|
||||
license = licenses.bsd0;
|
||||
maintainers = with maintainers; [ domenkozar ];
|
||||
};
|
||||
|
||||
@@ -20,7 +20,7 @@ buildPythonPackage rec {
|
||||
Think about the ideal way to write a web app.
|
||||
Write the code to make it happen.
|
||||
'';
|
||||
homepage = "http://webpy.org/";
|
||||
homepage = "https://webpy.org/";
|
||||
license = licenses.publicDomain;
|
||||
maintainers = with maintainers; [ layus ];
|
||||
};
|
||||
|
||||
@@ -19,7 +19,7 @@ buildPythonPackage rec {
|
||||
propagatedBuildInputs = [ xstatic-jquery ];
|
||||
|
||||
meta = with lib;{
|
||||
homepage = http://jqueryui.com/;
|
||||
homepage = https://jqueryui.com/;
|
||||
description = "jquery-ui packaged static files for python";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ makefu ];
|
||||
|
||||
Reference in New Issue
Block a user