about summary refs log tree commit diff
path: root/pkgs/tools/networking
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-04-15 20:47:30 -0400
committerGitHub <noreply@github.com>2019-04-15 20:47:30 -0400
commitf475aeaf29d8a0b3d2f0e235271625c8538ff22c (patch)
tree7ad5d29f4c4da232d9b034edd35be6bf286300c1 /pkgs/tools/networking
parent7bfe30917a8f45b53e3f7a546ebfc263bde4523e (diff)
parent290a5d916e4874a6cb36936b49faf9ef327c249f (diff)
downloadnixlib-f475aeaf29d8a0b3d2f0e235271625c8538ff22c.tar
nixlib-f475aeaf29d8a0b3d2f0e235271625c8538ff22c.tar.gz
nixlib-f475aeaf29d8a0b3d2f0e235271625c8538ff22c.tar.bz2
nixlib-f475aeaf29d8a0b3d2f0e235271625c8538ff22c.tar.lz
nixlib-f475aeaf29d8a0b3d2f0e235271625c8538ff22c.tar.xz
nixlib-f475aeaf29d8a0b3d2f0e235271625c8538ff22c.tar.zst
nixlib-f475aeaf29d8a0b3d2f0e235271625c8538ff22c.zip
Merge pull request #59535 from matthewbauer/homepage-fixes
treewide: update homepages to https where available
Diffstat (limited to 'pkgs/tools/networking')
-rw-r--r--pkgs/tools/networking/autossh/default.nix2
-rw-r--r--pkgs/tools/networking/ip2location/default.nix2
-rw-r--r--pkgs/tools/networking/keepalived/default.nix2
-rw-r--r--pkgs/tools/networking/ngrok-1/default.nix4
-rw-r--r--pkgs/tools/networking/nzbget/default.nix2
5 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/tools/networking/autossh/default.nix b/pkgs/tools/networking/autossh/default.nix
index 3ff06960156a..55b464607b11 100644
--- a/pkgs/tools/networking/autossh/default.nix
+++ b/pkgs/tools/networking/autossh/default.nix
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
     '';
 
   meta = with stdenv.lib; {
-    homepage = http://www.harding.motd.ca/autossh/;
+    homepage = https://www.harding.motd.ca/autossh/;
     description = "Automatically restart SSH sessions and tunnels";
     platforms = platforms.unix;
     maintainers = with maintainers; [ pSub ];
diff --git a/pkgs/tools/networking/ip2location/default.nix b/pkgs/tools/networking/ip2location/default.nix
index 00a3f7f3b6b0..3c2e7f53beeb 100644
--- a/pkgs/tools/networking/ip2location/default.nix
+++ b/pkgs/tools/networking/ip2location/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
       weather, MCC, MNC, mobile brand name, elevation and usage type of
       any IP address or host name in the IP2Location databases.
     '';
-    homepage = http://www.ip2location.com/free/applications;
+    homepage = https://www.ip2location.com/free/applications;
     license = with licenses; [ gpl3Plus lgpl3Plus ];
     platforms = platforms.linux;
   };
diff --git a/pkgs/tools/networking/keepalived/default.nix b/pkgs/tools/networking/keepalived/default.nix
index d38ff60f7062..43d0944a4159 100644
--- a/pkgs/tools/networking/keepalived/default.nix
+++ b/pkgs/tools/networking/keepalived/default.nix
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
  ];
 
   meta = with stdenv.lib; {
-    homepage = http://keepalived.org;
+    homepage = https://keepalived.org;
     description = "Routing software written in C";
     license = licenses.gpl2;
     platforms = platforms.linux;
diff --git a/pkgs/tools/networking/ngrok-1/default.nix b/pkgs/tools/networking/ngrok-1/default.nix
index 26bcc8f803f1..d0aec7889efa 100644
--- a/pkgs/tools/networking/ngrok-1/default.nix
+++ b/pkgs/tools/networking/ngrok-1/default.nix
@@ -28,4 +28,8 @@ buildGoPackage rec {
   '';
 
   buildFlags = [ "-tags release" ];
+
+  meta = {
+    homepage = https://ngrok.com/;
+  };
 }
diff --git a/pkgs/tools/networking/nzbget/default.nix b/pkgs/tools/networking/nzbget/default.nix
index 20a448b0ded6..3575cc65b2b2 100644
--- a/pkgs/tools/networking/nzbget/default.nix
+++ b/pkgs/tools/networking/nzbget/default.nix
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
   enableParallelBuilding = true;
 
   meta = with stdenv.lib; {
-    homepage = http://nzbget.net;
+    homepage = https://nzbget.net;
     license = licenses.gpl2Plus;
     description = "A command line tool for downloading files from news servers";
     maintainers = with maintainers; [ pSub ];