about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/sc/scout/package.nix
blob: 30f3a9fce3c40b86a07c3030f1e96dd186cf8aca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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 ];
  };
}