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

25 lines
636 B
Nix
Raw Normal View History

2017-02-06 14:58:40 +01:00
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "wuzz-${version}";
2017-02-09 11:00:39 +01:00
version = "2017-02-09";
2017-02-06 14:58:40 +01:00
goPackagePath = "https://github.com/asciimoo/wuzz";
src = fetchFromGitHub {
owner = "asciimoo";
repo = "wuzz";
2017-02-09 11:00:39 +01:00
rev = "dd696dc6e014e08b6042a71dca600356eb3156c2";
sha256 = "0m7jcb6rk0cb3giz1cbfhy3h4nzjl6qrk2k6czhn9267688rznpx";
2017-02-06 14:58:40 +01: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 ];
};
}