tcping-go: init at unstable-2022-05-28
This commit is contained in:
parent
41400115e0
commit
eb1f9ccfb4
2 changed files with 24 additions and 0 deletions
22
pkgs/applications/networking/tcping-go/default.nix
Normal file
22
pkgs/applications/networking/tcping-go/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{ lib, fetchFromGitHub, buildGoModule }:
|
||||||
|
|
||||||
|
buildGoModule {
|
||||||
|
pname = "tcping-go";
|
||||||
|
version = "unstable-2022-05-28";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "cloverstd";
|
||||||
|
repo = "tcping";
|
||||||
|
rev = "83f644c761819f7c4386f0645cd0a337eccfc62e";
|
||||||
|
sha256 = "sha256-GSkNfaGMJbBqDg8DKhDtLAuUg1yF3FbBdxcf4oG50rI=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -29273,6 +29273,8 @@ with pkgs;
|
||||||
|
|
||||||
taxi-cli = with python3Packages; toPythonApplication taxi;
|
taxi-cli = with python3Packages; toPythonApplication taxi;
|
||||||
|
|
||||||
|
tcping-go = callPackage ../applications/networking/tcping-go { };
|
||||||
|
|
||||||
librep = callPackage ../development/libraries/librep { };
|
librep = callPackage ../development/libraries/librep { };
|
||||||
|
|
||||||
rep-gtk = callPackage ../development/libraries/rep-gtk { };
|
rep-gtk = callPackage ../development/libraries/rep-gtk { };
|
||||||
|
|
Loading…
Reference in a new issue