tcping-rs: 1.2.21 -> 1.2.24 (#483524)

This commit is contained in:
Fabian Affolter
2026-01-25 15:19:57 +00:00
committed by GitHub
+8 -6
View File
@@ -4,18 +4,19 @@
fetchFromGitHub,
nix-update-script,
}:
rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
pname = "tcping-rs";
version = "1.2.21";
version = "1.2.24";
src = fetchFromGitHub {
owner = "lvillis";
repo = "tcping-rs";
tag = version;
hash = "sha256-n8eYxq3zFj1337lC7OJ32p9AaMU4HJDWVk0Bkw/STJ0=";
tag = finalAttrs.version;
hash = "sha256-gsTZls5guqtDk8x+3q4nFYGwhr+TAV5iE9kiZgbmzCI=";
};
cargoHash = "sha256-l1VzdBuwNANT9rUEEPuESfOp7/f3tghJrX/SEY9fSeA=";
cargoHash = "sha256-m/juo6+SPFAxQ7E2JgTkv47kxn4LhwfI4UGSDzHAXMc=";
checkFlags = [
# This test requires external network access
@@ -27,8 +28,9 @@ rustPlatform.buildRustPackage rec {
meta = {
description = "TCP Ping (tcping) Utility for Port Reachability";
homepage = "https://github.com/lvillis/tcping-rs";
changelog = "https://github.com/lvillis/tcping-rs/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
mainProgram = "tcping";
maintainers = with lib.maintainers; [ heitorPB ];
};
}
})