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:19:54 +02:00
parent 0109c84f71
commit bac4d95aa2
186 changed files with 242 additions and 243 deletions
@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
version = "2.8";
src = fetchurl {
url = "http://www.pjsip.org/release/${version}/pjproject-${version}.tar.bz2";
url = "https://www.pjsip.org/release/${version}/pjproject-${version}.tar.bz2";
sha256 = "0ybg0113rp3fk49rm2v0pcgqb28h3dv1pdy9594w2ggiz7bhngah";
};
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
meta = {
description = "A multimedia communication library written in C, implementing standard based protocols such as SIP, SDP, RTP, STUN, TURN, and ICE";
homepage = http://pjsip.org/;
homepage = https://pjsip.org/;
license = stdenv.lib.licenses.gpl2Plus;
maintainers = with stdenv.lib.maintainers; [olynch];
platforms = with stdenv.lib.platforms; linux;