depot/third_party/nixpkgs/pkgs/by-name/sc/scout/package.nix
Default email 23b612e36f Project import generated by Copybara.
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
2024-01-25 23:12:00 +09:00

26 lines
654 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "scout";
version = "0.15.1";
src = fetchFromGitHub {
owner = "liamg";
repo = pname;
rev = "v${version}";
hash = "sha256-9SimePyBUXXfT4+ZtciQMaoyXpyKi9D3LTwud8QMJ6w=";
};
vendorHash = "sha256-reoE3WNgulREwxoeGFEN1QONZ2q1LHmQF7+iGx0SGTY=";
meta = with lib; {
description = "Lightweight URL fuzzer and spider: Discover a web server's undisclosed files, directories and VHOSTs";
homepage = "https://github.com/liamg/scout";
platforms = platforms.unix;
license = licenses.unlicense;
maintainers = with maintainers; [ totoroot ];
};
}