biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / scilla / default.nix
blob24daa9f386c7acb4ec5f07beb17a505bf5ee72ec
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "scilla";
9   version = "1.3.0";
11   src = fetchFromGitHub {
12     owner = "edoardottt";
13     repo = "scilla";
14     rev = "refs/tags/v${version}";
15     hash = "sha256-ms52ii2cbZSZtcyxhVN+FbGP6hysoLvS7XwdPqxYymU=";
16   };
18   vendorHash = "sha256-tOg4T9yQm1aj5G89lUeRUTxi4YrwpRi5KDcpWw4TimY=";
20   ldflags = [
21     "-w"
22     "-s"
23   ];
25   checkFlags = [
26     # requires network access
27     "-skip=TestIPToHostname"
28   ];
30   meta = with lib; {
31     description = "Information gathering tool for DNS, ports and more";
32     mainProgram = "scilla";
33     homepage = "https://github.com/edoardottt/scilla";
34     changelog = "https://github.com/edoardottt/scilla/releases/tag/v${version}";
35     license = with licenses; [ gpl3Plus ];
36     maintainers = with maintainers; [ fab ];
37   };