Merge pull request #119720 from prusnak/https

treewide: use https for github URIs
This commit is contained in:
Pavol Rusnak 2021-04-17 18:10:13 +02:00 committed by GitHub
commit a15305e07b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 9 additions and 9 deletions

View file

@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Turns your Realtek RTL2832 based DVB dongle into a SDR receiver";
homepage = "http://github.com/librtlsdr/librtlsdr";
homepage = "https://github.com/librtlsdr/librtlsdr";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ bjornfor ];
platforms = platforms.linux ++ platforms.darwin;

View file

@ -108,7 +108,7 @@
base binary bytestring containers ghc-prim ghci-ghcjs
template-haskell-ghcjs
];
homepage = "http://github.com/ghcjs";
homepage = "https://github.com/ghcjs";
license = lib.licenses.mit;
}) {};

View file

@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Turns your Realtek RTL2832 based DVB dongle into a SDR receiver";
homepage = "http://github.com/librtlsdr/librtlsdr";
homepage = "https://github.com/librtlsdr/librtlsdr";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ bjornfor ];
platforms = platforms.linux ++ platforms.darwin;

View file

@ -22,6 +22,6 @@ buildDunePackage rec {
meta = with lib; {
description = "Low-level libraries for connecting to a xenstore service on a xen host";
license = licenses.lgpl21Only;
homepage = "http://github.com/xapi-project/ocaml-xenstore-clients";
homepage = "https://github.com/xapi-project/ocaml-xenstore-clients";
};
}

View file

@ -45,7 +45,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "A microframework based on uvloop, httptools, and learnings of flask";
homepage = "http://github.com/channelcat/sanic/";
homepage = "https://github.com/channelcat/sanic/";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};

View file

@ -32,7 +32,7 @@ def prefetch_github(owner: str, repo: str, ref: str) -> str:
def get_radare2_rev() -> str:
feed_url = "http://github.com/radareorg/radare2/releases.atom"
feed_url = "https://github.com/radareorg/radare2/releases.atom"
with urllib.request.urlopen(feed_url) as resp:
tree = ET.fromstring(resp.read())
releases = tree.findall(".//{http://www.w3.org/2005/Atom}entry")

View file

@ -3712,7 +3712,7 @@ in
buildInputs = globalBuildInputs;
meta = {
description = "Portable Unix shell commands for Node.js";
homepage = "http://github.com/shelljs/shelljs";
homepage = "https://github.com/shelljs/shelljs";
license = "BSD-3-Clause";
};
production = true;

View file

@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
pname = "chunkwm";
version = "0.4.9";
src = fetchzip {
url = "http://github.com/koekeishiya/chunkwm/archive/v${version}.tar.gz";
url = "https://github.com/koekeishiya/chunkwm/archive/v${version}.tar.gz";
sha256 = "0w8q92q97fdvbwc3qb5w44jn4vi3m65ssdvjp5hh6b7llr17vspl";
};

View file

@ -38,7 +38,7 @@ buildBazelPackage rec {
patches = [
# Quiche needs to be updated to compile under newer GCC.
# This is a manual backport of http://github.com/envoyproxy/envoy/pull/13949.
# This is a manual backport of https://github.com/envoyproxy/envoy/pull/13949.
./0001-quiche-update-QUICHE-tar-13949.patch
# upb needs to be updated to compile under newer GCC.