python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / nmap-formatter / default.nix
blob6aad0b111be85f6b575a9df42179291af1c9ef87
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "nmap-formatter";
8   version = "2.0.1";
10   src = fetchFromGitHub {
11     owner = "vdjagilev";
12     repo = pname;
13     rev = "v${version}";
14     hash = "sha256-Jhjvtk8SDs//eBW+2+yLcIXf/NetfBUrKvzKCj+VyMg=";
15   };
17   vendorSha256 = "sha256-u36eHSb6YlGJNkgmRDclxTsdkONLKn8J/GKaoCgy+Qk=";
19   meta = with lib; {
20     description = "Tool that allows you to convert nmap output";
21     homepage = "https://github.com/vdjagilev/nmap-formatter";
22     license = licenses.mit;
23     maintainers = with maintainers; [ fab ];
24   };