treewide: Change URLs to HTTPS

Lots of URLs were HTTP redirect to HTTPS. Changed those and checked them
if there's actual content. Inspired by
https://github.com/NixOS/nixpkgs/issues/60004
This commit is contained in:
Daniel Schaefer
2019-04-22 10:14:28 +02:00
parent 0109c84f71
commit bac4d95aa2
186 changed files with 242 additions and 243 deletions

View File

@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-astring-${version}";
src = fetchurl {
url = "http://erratique.ch/software/astring/releases/astring-${version}.tbz";
url = "https://erratique.ch/software/astring/releases/astring-${version}.tbz";
sha256 = "0ixjwc3plrljvj24za3l9gy0w30lsbggp8yh02lwrzw61ls4cri0";
};

View File

@@ -6,7 +6,7 @@ stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-bos-${version}";
version = "0.2.0";
src = fetchurl {
url = "http://erratique.ch/software/bos/releases/bos-${version}.tbz";
url = "https://erratique.ch/software/bos/releases/bos-${version}.tbz";
sha256 = "1s10iqx8rgnxr5n93lf4blwirjf8nlm272yg5sipr7lsr35v49wc";
};

View File

@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
inherit (param) version;
src = fetchurl {
url = "http://erratique.ch/software/${pname}/releases/${pname}-${version}.tbz";
url = "https://erratique.ch/software/${pname}/releases/${pname}-${version}.tbz";
inherit (param) sha256;
};

View File

@@ -4,7 +4,7 @@ stdenv.mkDerivation {
name = "ocaml${ocaml.version}-cpuid-0.1.0";
src = fetchurl {
url = http://github.com/pqwy/cpuid/releases/download/v0.1.0/cpuid-0.1.0.tbz;
url = https://github.com/pqwy/cpuid/releases/download/v0.1.0/cpuid-0.1.0.tbz;
sha256 = "08k2558a3dnxn8msgpz8c93sfn0y027ganfdi2yvql0fp1ixv97p";
};

View File

@@ -4,7 +4,7 @@ stdenv.mkDerivation {
name = "ocaml${ocaml.version}-fmt-0.8.5";
src = fetchurl {
url = http://erratique.ch/software/fmt/releases/fmt-0.8.5.tbz;
url = https://erratique.ch/software/fmt/releases/fmt-0.8.5.tbz;
sha256 = "1zj9azcxcn6skmb69ykgmi9z8c50yskwg03wqgh87lypgjdcz060";
};

View File

@@ -3,7 +3,7 @@
stdenv.mkDerivation {
name = "ocaml${ocaml.version}-fpath-0.7.2";
src = fetchurl {
url = http://erratique.ch/software/fpath/releases/fpath-0.7.2.tbz;
url = https://erratique.ch/software/fpath/releases/fpath-0.7.2.tbz;
sha256 = "1hr05d8bpqmqcfdavn4rjk9rxr7v2zl84866f5knjifrm60sxqic";
};

View File

@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-functoria-${version}";
version = "2.0.2";
src = fetchurl {
url = "http://github.com/mirage/functoria/releases/download/${version}/functoria-${version}.tbz";
url = "https://github.com/mirage/functoria/releases/download/${version}/functoria-${version}.tbz";
sha256 = "019rl4rir4lwgjyqj2wq3ylw4daih1kxxgbc6ld6kzcq66mwr747";
};

View File

@@ -5,7 +5,7 @@ let
pname = "gg";
version = "0.9.1";
webpage = "http://erratique.ch/software/${pname}";
webpage = "https://erratique.ch/software/${pname}";
in
assert versionAtLeast (getVersion ocaml) "4.01.0";

View File

@@ -6,7 +6,7 @@ stdenv.mkDerivation {
name = "ocaml${ocaml.version}-jsonm-${version}";
src = fetchurl {
url = "http://erratique.ch/software/jsonm/releases/jsonm-${version}.tbz";
url = "https://erratique.ch/software/jsonm/releases/jsonm-${version}.tbz";
sha256 = "1176dcmxb11fnw49b7yysvkjh0kpzx4s48lmdn5psq9vshp5c29w";
};

View File

@@ -2,7 +2,7 @@
, topkg, result, lwt, cmdliner, fmt }:
let
pname = "logs";
webpage = "http://erratique.ch/software/${pname}";
webpage = "https://erratique.ch/software/${pname}";
in
assert stdenv.lib.versionAtLeast ocaml.version "4.01.0";

View File

@@ -6,7 +6,7 @@ stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-${pname}-${version}";
src = fetchzip {
url = "http://github.com/aantron/markup.ml/archive/${version}.tar.gz";
url = "https://github.com/aantron/markup.ml/archive/${version}.tar.gz";
sha256 = "09qm73m6c6wjh51w61vnfsnis37m28cf1r6hnkr3bbg903ahwbp5";
};

View File

@@ -3,7 +3,7 @@
stdenv.mkDerivation {
name = "ocaml${ocaml.version}-mparser-1.2.3";
src = fetchzip {
url = http://github.com/cakeplus/mparser/archive/1.2.3.tar.gz;
url = https://github.com/cakeplus/mparser/archive/1.2.3.tar.gz;
sha256 = "1f8vpagmv0jdm50pxs2xwh2xcmvgaprx4kw871hlml9ahsflxgnw";
};

View File

@@ -19,7 +19,7 @@ stdenv.mkDerivation {
name = "ocaml${ocaml.version}-mtime-${param.version}";
src = fetchurl {
url = "http://erratique.ch/software/mtime/releases/mtime-${param.version}.tbz";
url = "https://erratique.ch/software/mtime/releases/mtime-${param.version}.tbz";
inherit (param) sha256;
};

View File

@@ -9,7 +9,7 @@ in stdenv.mkDerivation {
name = "ocaml-make-${version}";
src = fetchurl {
url = "http://bitbucket.org/mmottl/ocaml-makefile/downloads/ocaml-makefile-${version}.tar.gz";
url = "https://bitbucket.org/mmottl/ocaml-makefile/downloads/ocaml-makefile-${version}.tar.gz";
inherit sha256;
};

View File

@@ -3,7 +3,7 @@
stdenv.mkDerivation {
name = "ocaml${ocaml.version}-ocb-stubblr-0.1.0";
src = fetchzip {
url = http://github.com/pqwy/ocb-stubblr/releases/download/v0.1.0/ocb-stubblr-0.1.0.tbz;
url = https://github.com/pqwy/ocb-stubblr/releases/download/v0.1.0/ocb-stubblr-0.1.0.tbz;
name = "src.tar.bz";
sha256 = "0hpds1lkq4j8wgslv7hnirgfrjmqi36h5rarpw9mwf24gfp5ays2";
};

View File

@@ -6,7 +6,7 @@ then throw "octavius is not available for OCaml ${ocaml.version}" else
stdenv.mkDerivation {
name = "ocaml${ocaml.version}-octavius-0.2.0";
src = fetchurl {
url = http://github.com/ocaml-doc/octavius/releases/download/v0.2.0/octavius-0.2.0.tbz;
url = https://github.com/ocaml-doc/octavius/releases/download/v0.2.0/octavius-0.2.0.tbz;
sha256 = "02milzzlr4xk5aymg2fjz27f528d5pyscqvld3q0dm41zcpkz5ml";
};

View File

@@ -3,7 +3,7 @@
let
pname = "otfm";
version = "0.3.0";
webpage = "http://erratique.ch/software/${pname}";
webpage = "https://erratique.ch/software/${pname}";
in
assert stdenv.lib.versionAtLeast ocaml.version "4.01.0";

View File

@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-ptime-${version}";
src = fetchurl {
url = "http://erratique.ch/software/ptime/releases/ptime-${version}.tbz";
url = "https://erratique.ch/software/ptime/releases/ptime-${version}.tbz";
sha256 = "0z2snhda8bg136xkw2msw6k2dz84vb49p8bgzrxfs8mawdlk0kkg";
};

View File

@@ -4,7 +4,7 @@ stdenv.mkDerivation {
name = "ocaml-react-1.2.1";
src = fetchurl {
url = http://erratique.ch/software/react/releases/react-1.2.1.tbz;
url = https://erratique.ch/software/react/releases/react-1.2.1.tbz;
sha256 = "1aj8w79gdd9xnrbz7s5p8glcb4pmimi8jp9f439dqnf6ih3mqb3v";
};

View File

@@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-rresult-${version}";
version = "0.6.0";
src = fetchurl {
url = "http://erratique.ch/software/rresult/releases/rresult-${version}.tbz";
url = "https://erratique.ch/software/rresult/releases/rresult-${version}.tbz";
sha256 = "1k69a3gvrk7f2cshwjzvk7818f0bwxhacgd14wxy6d4gmrggci86";
};

View File

@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
version = "1.99.4";
src = fetchzip {
url = "http://github.com/alainfrisch/sedlex/archive/v${version}.tar.gz";
url = "https://github.com/alainfrisch/sedlex/archive/v${version}.tar.gz";
sha256 = "1b7nqxyfcz8i7m4b8zil2rn6ygh2czy26f9v64xnxn8r0hy9sh1m";
};

View File

@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
version = "1.0.0";
src = fetchurl {
url = "http://erratique.ch/software/topkg/releases/topkg-${version}.tbz";
url = "https://erratique.ch/software/topkg/releases/topkg-${version}.tbz";
sha256 = "1df61vw6v5bg2mys045682ggv058yqkqb67w7r2gz85crs04d5fw";
};

View File

@@ -7,7 +7,7 @@ else
let
pname = "tsdl";
version = "0.9.4";
webpage = "http://erratique.ch/software/${pname}";
webpage = "https://erratique.ch/software/${pname}";
in
stdenv.mkDerivation {

View File

@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-${pname}-${version}";
src = fetchzip {
url = "http://github.com/ocsigen/tyxml/archive/${version}.tar.gz";
url = "https://github.com/ocsigen/tyxml/archive/${version}.tar.gz";
sha256 = "1zrkrmxyj5a2cdh4b9zr9anwfk320wv3x0ynxnyxl5za2ix8sld8";
};

View File

@@ -2,7 +2,7 @@
let
pname = "uucd";
webpage = "http://erratique.ch/software/${pname}";
webpage = "https://erratique.ch/software/${pname}";
in
stdenv.mkDerivation rec {
name = "ocaml-${pname}-${version}";

View File

@@ -3,7 +3,7 @@
let
pname = "uucp";
version = "11.0.0";
webpage = "http://erratique.ch/software/${pname}";
webpage = "https://erratique.ch/software/${pname}";
in
assert stdenv.lib.versionAtLeast ocaml.version "4.01";

View File

@@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
version = "0.9.6";
name = "uuidm-${version}";
src = fetchurl {
url = "http://erratique.ch/software/uuidm/releases/uuidm-${version}.tbz";
url = "https://erratique.ch/software/uuidm/releases/uuidm-${version}.tbz";
sha256 = "0hz4fdx0x16k0pw9995vkz5d1hmzz6b16wck9li399rcbfnv5jlc";
};

View File

@@ -1,7 +1,7 @@
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, uchar, uutf, cmdliner }:
let
pname = "uunf";
webpage = "http://erratique.ch/software/${pname}";
webpage = "https://erratique.ch/software/${pname}";
in
assert stdenv.lib.versionAtLeast ocaml.version "4.01";

View File

@@ -2,7 +2,7 @@
let
pname = "uuseg";
webpage = "http://erratique.ch/software/${pname}";
webpage = "https://erratique.ch/software/${pname}";
in
stdenv.mkDerivation rec {

View File

@@ -1,7 +1,7 @@
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, cmdliner , topkg, uchar }:
let
pname = "uutf";
webpage = "http://erratique.ch/software/${pname}";
webpage = "https://erratique.ch/software/${pname}";
in
stdenv.mkDerivation rec {

View File

@@ -12,7 +12,7 @@ let
pname = "vg";
version = "0.9.1";
webpage = "http://erratique.ch/software/${pname}";
webpage = "https://erratique.ch/software/${pname}";
in
assert versionAtLeast ocaml.version "4.02.0";

View File

@@ -1,7 +1,7 @@
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg }:
let
pname = "xmlm";
webpage = "http://erratique.ch/software/${pname}";
webpage = "https://erratique.ch/software/${pname}";
in
if !stdenv.lib.versionAtLeast ocaml.version "4.02"