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

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

26 lines
573 B
Nix
Raw Normal View History

2021-10-04 08:20:12 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "cariddi";
2022-11-17 21:42:45 +00:00
version = "1.2.1";
2021-10-04 08:20:12 +00:00
src = fetchFromGitHub {
owner = "edoardottt";
repo = pname;
rev = "v${version}";
2022-11-17 21:42:45 +00:00
sha256 = "sha256-8Z2iswjl85rsIhHMAGD3kYJanBWToWBVidglWMg7omw=";
2021-10-04 08:20:12 +00:00
};
2022-09-05 09:40:03 +00:00
vendorSha256 = "sha256-mXzI3NF1afMvQ4STPpbehoarfOT35P01IotXPVYNnio=";
2021-10-04 08:20:12 +00:00
meta = with lib; {
description = "Crawler for URLs and endpoints";
homepage = "https://github.com/edoardottt/cariddi";
license = with licenses; [ gpl3Plus ];
maintainers = with maintainers; [ fab ];
};
}