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

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

27 lines
661 B
Nix
Raw Normal View History

2021-10-04 08:20:12 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "cariddi";
2023-06-13 19:00:52 +00:00
version = "1.3.2";
2021-10-04 08:20:12 +00:00
src = fetchFromGitHub {
owner = "edoardottt";
repo = pname;
2023-02-26 14:27:05 +00:00
rev = "refs/tags/v${version}";
2023-06-13 19:00:52 +00:00
hash = "sha256-oM4A4chSBTiCMr3bW0AvjAFlyuqvKKKY2Ji4PYRsUqA=";
2021-10-04 08:20:12 +00:00
};
2023-06-13 19:00:52 +00:00
vendorHash = "sha256-EeoJssX/OkIJKltANfvMirvDVmVVIe9hDj+rThKpd10=";
2021-10-04 08:20:12 +00:00
meta = with lib; {
description = "Crawler for URLs and endpoints";
homepage = "https://github.com/edoardottt/cariddi";
2023-02-26 14:27:05 +00:00
changelog = "https://github.com/edoardottt/cariddi/releases/tag/v${version}";
2021-10-04 08:20:12 +00:00
license = with licenses; [ gpl3Plus ];
maintainers = with maintainers; [ fab ];
};
}