2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2017-02-06 13:58:40 +00:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "wuzz";
|
2017-02-19 19:11:00 +00:00
|
|
|
version = "0.2.0";
|
2017-02-16 19:32:06 +00:00
|
|
|
rev = "v${version}";
|
2017-02-06 13:58:40 +00:00
|
|
|
|
|
|
|
goPackagePath = "https://github.com/asciimoo/wuzz";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "asciimoo";
|
|
|
|
repo = "wuzz";
|
2017-02-16 19:32:06 +00:00
|
|
|
inherit rev;
|
2017-02-19 19:11:00 +00:00
|
|
|
sha256 = "1fcr5jr0vn5w60bn08lkh2mi0hdarwp361h94in03139j7hhqrfs";
|
2017-02-06 13:58:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/asciimoo/wuzz";
|
2017-02-06 13:58:40 +00:00
|
|
|
description = "Interactive cli tool for HTTP inspection";
|
|
|
|
license = licenses.agpl3;
|
|
|
|
maintainers = with maintainers; [ pradeepchhetri ];
|
|
|
|
};
|
|
|
|
}
|