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

26 lines
617 B
Nix
Raw Normal View History

2017-02-06 16:58:40 +03:00
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "wuzz-${version}";
2017-02-16 22:32:06 +03:00
version = "0.1.0";
rev = "v${version}";
2017-02-06 16:58:40 +03:00
goPackagePath = "https://github.com/asciimoo/wuzz";
src = fetchFromGitHub {
owner = "asciimoo";
repo = "wuzz";
2017-02-16 22:32:06 +03:00
inherit rev;
sha256 = "0n55y9dmx4rsccjscvbrgiq2g1qwqxj44lg90589i55b5f7r1ljd";
2017-02-06 16:58:40 +03: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 ];
};
}