1{ lib
2, buildGoModule
3, fetchFromGitHub
4}:
5
6buildGoModule rec {
7 pname = "scilla";
8 version = "1.2.4";
9
10 src = fetchFromGitHub {
11 owner = "edoardottt";
12 repo = pname;
13 rev = "v${version}";
14 sha256 = "sha256-8ZRYgQ4xME71vlO0nKnxiCqeju0G4SwgEXnUol1jQxk=";
15 };
16
17 vendorSha256 = "sha256-Y4Zi0Hy6ydGxLTohgJGF3L9O+79z+3t+4ZA64otCJpE=";
18
19 meta = with lib; {
20 description = "Information gathering tool for DNS, ports and more";
21 homepage = "https://github.com/edoardottt/scilla";
22 license = with licenses; [ gpl3Plus ];
23 maintainers = with maintainers; [ fab ];
24 };
25}