mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 16:23:26 +00:00
32 lines
760 B
Nix
32 lines
760 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "scilla";
|
|
version = "1.2.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "edoardottt";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-gZuNXQaxHJYLsEaOpNYo7ybg3f0GhkpiaLrex5lkDu4=";
|
|
};
|
|
|
|
vendorHash = "sha256-bVGmleuOJzi/Sz7MJlnQuJsDgRWuwieLUx8hcyKkWXI=";
|
|
|
|
checkFlags = [
|
|
# requires network access
|
|
"-skip=TestIPToHostname"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Information gathering tool for DNS, ports and more";
|
|
homepage = "https://github.com/edoardottt/scilla";
|
|
changelog = "https://github.com/edoardottt/scilla/releases/tag/v${version}";
|
|
license = with licenses; [ gpl3Plus ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|