2023-06-19 03:55:39 +02:00
|
|
|
{ lib, fetchFromGitHub, buildGoModule }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "fscan";
|
2023-12-05 16:11:10 +01:00
|
|
|
version = "1.8.3-build3";
|
2023-06-19 03:55:39 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "shadow1ng";
|
|
|
|
repo = "fscan";
|
|
|
|
rev = version;
|
2023-12-05 16:11:10 +01:00
|
|
|
hash = "sha256-GtOCd8JaR6tx8hoB+P9QXrEnN7Wvmv7jddhc2/8hjvQ=";
|
2023-06-19 03:55:39 +02:00
|
|
|
};
|
|
|
|
|
2023-11-13 11:32:45 +01:00
|
|
|
vendorHash = "sha256-hvb2IfypwYauF3ubE36u0bTU+l/FWP/CZt6dFd9zc6s=";
|
2023-06-19 03:55:39 +02:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "An intranet comprehensive scanning tool";
|
|
|
|
homepage = "https://github.com/shadow1ng/fscan";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ Misaka13514 ];
|
2023-11-23 03:51:17 +01:00
|
|
|
mainProgram = "fscan";
|
2023-06-19 03:55:39 +02:00
|
|
|
};
|
|
|
|
}
|