nixpkgs/pkgs/tools/networking/wuzz/default.nix

26 lines
612 B
Nix
Raw Normal View History

2017-02-19 19:11:00 +00:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
2017-02-06 13:58:40 +00:00
buildGoPackage rec {
name = "wuzz-${version}";
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;
meta = with stdenv.lib; {
homepage = https://github.com/asciimoo/wuzz;
description = "Interactive cli tool for HTTP inspection";
license = licenses.agpl3;
maintainers = with maintainers; [ pradeepchhetri ];
};
}