biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / fscan / default.nix
blob37886995b36146ad8b381e585c3e81b2bf97be13
1 { lib, fetchFromGitHub, buildGoModule }:
3 buildGoModule rec {
4   pname = "fscan";
5   version = "1.8.4";
7   src = fetchFromGitHub {
8     owner = "shadow1ng";
9     repo = "fscan";
10     rev = version;
11     hash = "sha256-5uFSvEkTBy0veMdeeg9BmSqu+qSqCwuozK0J3kerAdE=";
12   };
14   vendorHash = "sha256-FFYqvGEFe7sUEb4G3ApQOuYoiDXeA54P7spmKfRiEF0=";
16   meta = with lib; {
17     description = "Intranet comprehensive scanning tool";
18     homepage = "https://github.com/shadow1ng/fscan";
19     license = licenses.mit;
20     maintainers = with maintainers; [ Misaka13514 ];
21     mainProgram = "fscan";
22   };