about summary refs log tree commit diff
path: root/pkgs/development/libraries/liburcu
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-03-24 22:04:25 -0700
committerRyan Mulligan <ryan@ryantm.com>2018-03-24 22:04:25 -0700
commitb189247ba0b568da59bdb1ab82c5d95b8a85ba24 (patch)
treeff592f0c0a21429b147fbec57061aea5ecc37e46 /pkgs/development/libraries/liburcu
parent3583cf8f4b3e7d7691d3463797f5d98d505ba811 (diff)
treewide: use more HTTPS URLs
Uses the HTTPS url for cases where the existing URL has a permanent
redirect. For each domain, at least one fixed derivation URL was
downloaded to test the domain is properly serving downloads.

Also fixes jbake source URL, which was broken.
Diffstat (limited to 'pkgs/development/libraries/liburcu')
-rw-r--r--pkgs/development/libraries/liburcu/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/liburcu/default.nix b/pkgs/development/libraries/liburcu/default.nix
index aa106baf8152a..85f8b6df2959d 100644
--- a/pkgs/development/libraries/liburcu/default.nix
+++ b/pkgs/development/libraries/liburcu/default.nix
@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
   name = "liburcu-${version}";
 
   src = fetchurl {
-    url = "http://lttng.org/files/urcu/userspace-rcu-${version}.tar.bz2";
+    url = "https://lttng.org/files/urcu/userspace-rcu-${version}.tar.bz2";
     sha256 = "01pbg67qy5hcssy2yi0ckqapzfclgdq93li2rmzw4pa3wh5j42cw";
   };
 
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "Userspace RCU (read-copy-update) library";
-    homepage = http://lttng.org/urcu;
+    homepage = https://lttng.org/urcu;
     license = licenses.lgpl21Plus;
     platforms = platforms.unix;
     maintainers = [ maintainers.bjornfor ];