1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #23401 from c0bw3b/pkg/httping

httping 2.5: fetch over HTTPS + license info
This commit is contained in:
Tobias Geerinckx-Rice 2017-03-02 18:25:29 +00:00 committed by GitHub
commit a9700f7fac

View file

@ -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;
};