about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorWinter <winter@winter.cafe>2022-07-29 01:19:30 -0400
committerGitHub <noreply@github.com>2022-07-29 01:19:30 -0400
commitaee88b4636c837030ac9cdeb931d3ee8f8b2c477 (patch)
tree906447c9da4c330f0325b763fe6c9ca90f867138 /pkgs/applications
parent52097400d8560a5ddf40638fc5dfa267989506a7 (diff)
parenteb1f9ccfb44a0c34ea3cd80da9397ab803d657e5 (diff)
Merge pull request #183435 from bcdarwin/tcping-go
tcping-go: init at unstable-2022-05-28
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/tcping-go/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/networking/tcping-go/default.nix b/pkgs/applications/networking/tcping-go/default.nix
new file mode 100644
index 0000000000000..b7f8ceb6d6818
--- /dev/null
+++ b/pkgs/applications/networking/tcping-go/default.nix
@@ -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 ];
+  };
+}