Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
28 lines
649 B
Nix
28 lines
649 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildGoModule,
|
|
}:
|
|
|
|
buildGoModule {
|
|
pname = "tcping-go";
|
|
version = "unstable-2022-05-28";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cloverstd";
|
|
repo = "tcping";
|
|
rev = "83f644c761819f7c4386f0645cd0a337eccfc62e";
|
|
sha256 = "sha256-GSkNfaGMJbBqDg8DKhDtLAuUg1yF3FbBdxcf4oG50rI=";
|
|
};
|
|
|
|
vendorHash = "sha256-Q+aFgi7GCAn3AxDuGtRG4DdPhI7gQKEo7A9iu1YcTsQ=";
|
|
|
|
meta = with lib; {
|
|
description = "Ping over TCP instead of ICMP, written in Go";
|
|
homepage = "https://github.com/cloverstd/tcping";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ bcdarwin ];
|
|
mainProgram = "tcping";
|
|
};
|
|
}
|