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

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

26 lines
591 B
Nix
Raw Normal View History

2021-01-18 09:12:00 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "scilla";
2022-09-05 03:49:53 +01:00
version = "1.2.3";
2021-01-18 09:12:00 +00:00
src = fetchFromGitHub {
owner = "edoardottt";
repo = pname;
2021-09-03 19:29:43 +01:00
rev = "v${version}";
2022-09-05 03:49:53 +01:00
sha256 = "sha256-VTX4NG3BzmLpf2sIxZ5DGjg9dnCTSO0VbGx2PMhjBPg=";
2021-01-18 09:12:00 +00:00
};
2022-09-05 03:49:53 +01:00
vendorSha256 = "sha256-aoz2H7hkk85ntao6e5Chn++T2kA5jogHrd/ltVqNS3A=";
2021-01-18 09:12:00 +00:00
meta = with lib; {
description = "Information gathering tool for DNS, ports and more";
homepage = "https://github.com/edoardottt/scilla";
license = with licenses; [ gpl3Plus ];
maintainers = with maintainers; [ fab ];
};
}