nixpkgs/pkgs/tools/security/scilla/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
834 B
Nix
Raw Normal View History

2024-04-07 22:50:33 +00:00
{
lib,
buildGoModule,
fetchFromGitHub,
2021-01-18 09:12:00 +00:00
}:
buildGoModule rec {
pname = "scilla";
version = "1.3.0";
2021-01-18 09:12:00 +00:00
src = fetchFromGitHub {
owner = "edoardottt";
2024-04-07 22:50:05 +00:00
repo = "scilla";
2023-08-20 16:23:25 +00:00
rev = "refs/tags/v${version}";
hash = "sha256-ms52ii2cbZSZtcyxhVN+FbGP6hysoLvS7XwdPqxYymU=";
2021-01-18 09:12:00 +00:00
};
vendorHash = "sha256-tOg4T9yQm1aj5G89lUeRUTxi4YrwpRi5KDcpWw4TimY=";
2023-07-15 06:43:05 +00:00
2024-04-07 22:50:05 +00:00
ldflags = [
"-w"
"-s"
];
2023-07-15 06:43:05 +00:00
checkFlags = [
# requires network access
"-skip=TestIPToHostname"
];
2021-01-18 09:12:00 +00:00
meta = with lib; {
description = "Information gathering tool for DNS, ports and more";
mainProgram = "scilla";
2021-01-18 09:12:00 +00:00
homepage = "https://github.com/edoardottt/scilla";
2023-08-20 16:23:25 +00:00
changelog = "https://github.com/edoardottt/scilla/releases/tag/v${version}";
2021-01-18 09:12:00 +00:00
license = with licenses; [ gpl3Plus ];
maintainers = with maintainers; [ fab ];
};
}