summary refs log tree commit diff
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <nckx@users.noreply.github.com>2017-03-02 18:25:29 +0000
committerGitHub <noreply@github.com>2017-03-02 18:25:29 +0000
commita9700f7fac3859b4621683bd898b607b5d2e7cb3 (patch)
tree19313e527d452f16081d2aeb4f934da9c27d1994
parent027ffb6429caee45335094e7674a39fab11579ec (diff)
parentb0ae3c14fbdd6a85b31d58fe4bc977551446ddb5 (diff)
downloadnixlib-a9700f7fac3859b4621683bd898b607b5d2e7cb3.tar
nixlib-a9700f7fac3859b4621683bd898b607b5d2e7cb3.tar.gz
nixlib-a9700f7fac3859b4621683bd898b607b5d2e7cb3.tar.bz2
nixlib-a9700f7fac3859b4621683bd898b607b5d2e7cb3.tar.lz
nixlib-a9700f7fac3859b4621683bd898b607b5d2e7cb3.tar.xz
nixlib-a9700f7fac3859b4621683bd898b607b5d2e7cb3.tar.zst
nixlib-a9700f7fac3859b4621683bd898b607b5d2e7cb3.zip
Merge pull request #23401 from c0bw3b/pkg/httping
httping 2.5: fetch over HTTPS + license info
-rw-r--r--pkgs/tools/networking/httping/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/networking/httping/default.nix b/pkgs/tools/networking/httping/default.nix
index 36627b4e7a41..ce58da880d63 100644
--- a/pkgs/tools/networking/httping/default.nix
+++ b/pkgs/tools/networking/httping/default.nix
@@ -6,7 +6,7 @@ stdenv.mkDerivation rec {
   version = "2.5";
 
   src = fetchurl {
-    url = "http://www.vanheusden.com/httping/${name}.tgz";
+    url = "https://www.vanheusden.com/httping/${name}.tgz";
     sha256 = "1y7sbgkhgadmd93x1zafqc4yp26ssiv16ni5bbi9vmvvdl55m29y";
   };
 
@@ -27,6 +27,7 @@ stdenv.mkDerivation rec {
       the transmission across the network also takes time! So it measures the
       latency of the webserver + network. It supports IPv6.
     '';
+    license = licenses.agpl3;
     maintainers = with maintainers; [ nckx rickynils ];
     platforms = platforms.linux;
   };