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

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

34 lines
900 B
Nix
Raw Normal View History

2021-12-04 08:39:55 +00:00
{ lib
, buildGoModule
2020-12-27 14:54:00 +00:00
, fetchFromGitHub
}:
buildGoModule rec {
pname = "gospider";
2021-12-04 08:39:55 +00:00
version = "1.1.6";
2020-12-27 14:54:00 +00:00
src = fetchFromGitHub {
owner = "jaeles-project";
repo = pname;
2021-12-04 08:39:55 +00:00
rev = "v${version}";
sha256 = "sha256-1EnKheHaS1kxw0cjxCahT3rUWBXiqxjKefrDBI2xIvY=";
2020-12-27 14:54:00 +00:00
};
vendorHash = "sha256-egjjSEZH8F6UMbnkz3xytIzdW/oITB3RL1ddxrmvSZM=";
2020-12-27 14:54:00 +00:00
# tests require internet access and API keys
doCheck = false;
meta = with lib; {
2020-12-27 14:54:00 +00:00
description = "Fast web spider written in Go";
longDescription = ''
GoSpider is a fast web crawler that parses sitemap.xml and robots.txt file.
It can generate and verify link from JavaScript files, extract URLs from
various sources and can detect subdomains from the response source.
'';
homepage = "https://github.com/jaeles-project/gospider";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}