fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / by-name / sc / scilla / package.nix
blob77aeeae08e5efb470951c9cdc0e43edd3609a963
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "scilla";
9   version = "1.3.1";
11   src = fetchFromGitHub {
12     owner = "edoardottt";
13     repo = "scilla";
14     rev = "refs/tags/v${version}";
15     hash = "sha256-V6QJqjuVLE6jpwv4XbsdPx8kpfTRjV4QH5O6lng9+h4=";
16   };
18   vendorHash = "sha256-yTsiEA6NI2atN1VrclwVe1xz7CEFfcuRt4yMuz2CFog=";
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   };