python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / sdlookup / default.nix
blob80b6d3ba6881639b78ce98a42029a8777161ac7b
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "sdlookup";
8   version = "unstable-2022-03-10";
10   src = fetchFromGitHub {
11     owner = "j3ssie";
12     repo = pname;
13     rev = "8554bfa27284c4764401dbd8da23800d4ae968a2";
14     hash = "sha256-c6xAgOxle51waiFsSWvwO9eyt1KXuM0dEeepVsRQHkk=";
15   };
17   vendorSha256 = "sha256-j0UzucZ6kDwM+6U0ZyIW9u8XG/Bn+VUCO2vV1BbnQo0=";
19   meta = with lib; {
20     description = "IP lookups for open ports and vulnerabilities from internetdb.shodan.io";
21     homepage = "https://github.com/j3ssie/sdlookup";
22     license = with licenses; [ mit ];
23     maintainers = with maintainers; [ fab ];
24   };