mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 15:07:50 +00:00
lprobe: init at 0.1.3
https://github.com/fivexl/lprobe/releases/tag/v0.1.3
This commit is contained in:
parent
3524ada163
commit
3f5602bf97
33
pkgs/by-name/lp/lprobe/package.nix
Normal file
33
pkgs/by-name/lp/lprobe/package.nix
Normal file
@ -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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user