wuzz: init at 2017-02-05

This commit is contained in:
Pradeep Chhetri
2017-02-06 19:28:40 +05:30
parent 90bc1a8595
commit f22a7f0558
3 changed files with 55 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "wuzz-${version}";
version = "2017-02-05";
goPackagePath = "https://github.com/asciimoo/wuzz";
src = fetchFromGitHub {
owner = "asciimoo";
repo = "wuzz";
rev = "45b6a64e667b3647216af68e06e253958b81b3c4";
sha256 = "0jjdyqh1jvfg1dg5fwwavcvkn8fkm1a44gyv35c1g5cd9gxwj8nw";
};
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 ];
};
}