biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / sdlookup / default.nix
blobd4b4e6b3ad545282993f9bdb640d370d1a82965e
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   vendorHash = "sha256-j0UzucZ6kDwM+6U0ZyIW9u8XG/Bn+VUCO2vV1BbnQo0=";
19   meta = with lib; {
20     description = "IP lookups for open ports and vulnerabilities from internetdb.shodan.io";
21     mainProgram = "sdlookup";
22     homepage = "https://github.com/j3ssie/sdlookup";
23     license = with licenses; [ mit ];
24     maintainers = with maintainers; [ fab ];
25   };