Merge pull request #163466 from fabaff/sdlookup

This commit is contained in:
Sandro 2022-03-12 22:06:43 +01:00 committed by GitHub
commit 50b45d04d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "sdlookup";
version = "unstable-2022-03-10";
src = fetchFromGitHub {
owner = "j3ssie";
repo = pname;
rev = "8554bfa27284c4764401dbd8da23800d4ae968a2";
hash = "sha256-c6xAgOxle51waiFsSWvwO9eyt1KXuM0dEeepVsRQHkk=";
};
vendorSha256 = "sha256-j0UzucZ6kDwM+6U0ZyIW9u8XG/Bn+VUCO2vV1BbnQo0=";
meta = with lib; {
description = "IP lookups for open ports and vulnerabilities from internetdb.shodan.io";
homepage = "https://github.com/j3ssie/sdlookup";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -1100,6 +1100,8 @@ with pkgs;
redfang = callPackage ../tools/networking/redfang { };
sdlookup = callPackage ../tools/security/sdlookup { };
sx-go = callPackage ../tools/security/sx-go { };
tauon = callPackage ../applications/audio/tauon { };