mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 21:23:06 +00:00
edaf6d0413
* rabtap: init at 1.38.2 * Update pkgs/tools/networking/rabtap/default.nix --------- Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
23 lines
577 B
Nix
23 lines
577 B
Nix
{ buildGoModule, fetchFromGitHub, lib }:
|
|
|
|
buildGoModule rec {
|
|
pname = "rabtap";
|
|
version = "1.38.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jandelgado";
|
|
repo = "rabtap";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-l35MHr7NWBlzKcGSDGjHTwGfnDrOpjeJp9/YAp1Areo=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-sJFMef9VnU6iKGf9UwEK60axLUBkubFWgI+pWKjaWNU=";
|
|
|
|
meta = with lib; {
|
|
description = "RabbitMQ wire tap and swiss army knife";
|
|
license = licenses.gpl3Only;
|
|
homepage = "https://github.com/jandelgado/rabtap";
|
|
maintainers = with maintainers; [ eigengrau ];
|
|
};
|
|
}
|