Merge pull request #119720 from prusnak/https

treewide: use https for github URIs

Changed files
+9 -9
pkgs
applications
radio
rtl-sdr
development
compilers
ghcjs-ng
libraries
librtlsdr
ocaml-modules
xenstore_transport
python-modules
sanic
tools
analysis
radare2
web
os-specific
darwin
chunkwm
servers
http
envoy
+1 -1
pkgs/applications/radio/rtl-sdr/default.nix
···
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;
+1 -1
pkgs/development/compilers/ghcjs-ng/8.6/stage0.nix
···
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;
}) {};
+1 -1
pkgs/development/libraries/librtlsdr/default.nix
···
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;
+1 -1
pkgs/development/ocaml-modules/xenstore_transport/default.nix
···
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";
};
}
+1 -1
pkgs/development/python-modules/sanic/default.nix
···
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 ];
};
+1 -1
pkgs/development/tools/analysis/radare2/update.py
···
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")
+1 -1
pkgs/development/web/remarkjs/node-packages.nix
···
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;
+1 -1
pkgs/os-specific/darwin/chunkwm/default.nix
···
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";
};
+1 -1
pkgs/servers/http/envoy/default.nix
···
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.