3
0
Fork 0
forked from mirrors/nixpkgs
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 09:20:12 +01:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "cariddi";
2021-12-25 02:03:34 +00:00
version = "1.1.5";
2021-10-04 09:20:12 +01:00
src = fetchFromGitHub {
owner = "edoardottt";
repo = pname;
rev = "v${version}";
2021-12-25 02:03:34 +00:00
sha256 = "sha256-PXQljC9rwlxXQ96fII3EjD4NXu61EMkYvMWqkcJZ4vU=";
2021-10-04 09:20:12 +01:00
};
2022-01-31 01:43:01 +00:00
vendorSha256 = "sha256-zNUdglsfy6lEV54afCAoigxa3rR0qf/e3+B4PvVRIa4=";
2021-10-04 09:20:12 +01:00
meta = with lib; {
description = "Crawler for URLs and endpoints";
homepage = "https://github.com/edoardottt/cariddi";
license = with licenses; [ gpl3Plus ];
maintainers = with maintainers; [ fab ];
};
}