9ffea64abd
Also switch to buildGoModule.
23 lines
569 B
Nix
23 lines
569 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "wuzz";
|
|
version = "0.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "asciimoo";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-H0soiKOytchfcFx17az0pGoFbA+hhXLxGJVdaARvnDc=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-omeAIq8KBYXRnldiGKDF1g+aOKYc+B4grusmfg5wOuA=";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/asciimoo/wuzz";
|
|
description = "Interactive cli tool for HTTP inspection";
|
|
license = licenses.agpl3;
|
|
maintainers = with maintainers; [ pradeepchhetri ];
|
|
};
|
|
}
|