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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
641 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2017-02-06 13:58:40 +00:00
buildGoModule rec {
pname = "wuzz";
version = "0.5.0";
2017-02-06 13:58:40 +00:00
src = fetchFromGitHub {
owner = "asciimoo";
repo = pname;
rev = "v${version}";
sha256 = "sha256-H0soiKOytchfcFx17az0pGoFbA+hhXLxGJVdaARvnDc=";
2017-02-06 13:58:40 +00:00
};
vendorSha256 = null; #vendorSha256 = "";
2017-02-06 13:58:40 +00:00
meta = with lib; {
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 ];
broken = true; # vendor isn't reproducible with go > 1.17: nix-build -A $name.go-modules --check
2017-02-06 13:58:40 +00:00
};
}