Skip to content

Commit

Permalink
lprobe: init at 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
cageyv committed Sep 1, 2024
1 parent 3524ada commit 3f5602b
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions pkgs/by-name/lp/lprobe/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
lib,
buildGoModule,
fetchFromGitHub,
libpcap,
}:

buildGoModule rec {
pname = "lprobe";
version = "0.1.3";

src = fetchFromGitHub {
owner = "fivexl";
repo = "lprobe";
rev = "refs/tags/v${version}";
hash = "sha256-q7lH0aLgQNM4jrrrq2ua+pt4/VknxlzKzDH5J4MwjfA=";
};

vendorHash = "sha256-B3lcE33Ny+XE7nK/QlVcV8yYgzYWNBfoecuL+AcavSk=";

buildInputs = [
libpcap
];

meta = {
description = "A command-line tool to perform Local Health Check Probes inside Container Images (ECS, Docker)";
homepage = "https://github.com/fivexl/lprobe";
license = lib.licenses.asl20;
platforms = lib.platforms.linux ++ lib.platforms.darwin;
maintainers = with lib.maintainers; [ cageyv ];
mainProgram = "lprobe";
};
}

0 comments on commit 3f5602b

Please sign in to comment.