evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / tc / tcping-go / package.nix
blob950c648337ad9660df780a0762387c2d0c9f3112
1 { lib, fetchFromGitHub, buildGoModule }:
3 buildGoModule {
4   pname = "tcping-go";
5   version = "unstable-2022-05-28";
7   src = fetchFromGitHub {
8     owner = "cloverstd";
9     repo = "tcping";
10     rev = "83f644c761819f7c4386f0645cd0a337eccfc62e";
11     sha256 = "sha256-GSkNfaGMJbBqDg8DKhDtLAuUg1yF3FbBdxcf4oG50rI=";
12   };
14   vendorHash = "sha256-Q+aFgi7GCAn3AxDuGtRG4DdPhI7gQKEo7A9iu1YcTsQ=";
16   meta = with lib; {
17     description = "Ping over TCP instead of ICMP, written in Go";
18     homepage = "https://github.com/cloverstd/tcping";
19     license = licenses.mit;
20     maintainers = with maintainers; [ bcdarwin ];
21     mainProgram = "tcping";
22   };