Merge pull request #280224 from totoroot/init/scout-0.15.1
scout: init at 0.15.1
This commit is contained in:
commit
c30bdd3869
1 changed files with 26 additions and 0 deletions
26
pkgs/by-name/sc/scout/package.nix
Normal file
26
pkgs/by-name/sc/scout/package.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue