Unverified Commit 0077b859 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

parents d7ff65e3 f8c15a6f
Loading
Loading
Loading
Loading
+8 −6
Original line number Diff line number Diff line
@@ -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 ];
  };
}
})