1{ lib, fetchFromGitHub, buildGoModule }:
2
3buildGoModule rec {
4 pname = "fscan";
5 version = "1.8.3";
6
7 src = fetchFromGitHub {
8 owner = "shadow1ng";
9 repo = "fscan";
10 rev = version;
11 hash = "sha256-uoM/nMtgIqyzpOoSQKD5k4LXAXoA8G5N4In8tZlngqs=";
12 };
13
14 vendorHash = "sha256-hvb2IfypwYauF3ubE36u0bTU+l/FWP/CZt6dFd9zc6s=";
15
16 meta = with lib; {
17 description = "An intranet comprehensive scanning tool";
18 homepage = "https://github.com/shadow1ng/fscan";
19 license = licenses.mit;
20 maintainers = with maintainers; [ Misaka13514 ];
21 platforms = with platforms; unix ++ windows;
22 };
23}