fscan: init at 1.8.2
Co-authored-by: drupol <pol.dellaiera@protonmail.com>
This commit is contained in:
parent
5d14150c1e
commit
4311235c69
2 changed files with 25 additions and 0 deletions
23
pkgs/tools/security/fscan/default.nix
Normal file
23
pkgs/tools/security/fscan/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ lib, fetchFromGitHub, buildGoModule }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "fscan";
|
||||
version = "1.8.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "shadow1ng";
|
||||
repo = "fscan";
|
||||
rev = version;
|
||||
hash = "sha256-PbhCKIr7qy4/hzx3TC7lnrQQw8rlUlprAbHdKdxgVuY=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-pzcZgBcjGU5AyZfh+mHnphEboDDvQqseiuouwgb8rN8=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "An intranet comprehensive scanning tool";
|
||||
homepage = "https://github.com/shadow1ng/fscan";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ Misaka13514 ];
|
||||
platforms = with platforms; unix ++ windows;
|
||||
};
|
||||
}
|
|
@ -1571,6 +1571,8 @@ with pkgs;
|
|||
|
||||
etlegacy = callPackage ../games/etlegacy { lua = lua5_4; };
|
||||
|
||||
fscan = callPackage ../tools/security/fscan { };
|
||||
|
||||
copier = callPackage ../tools/misc/copier { };
|
||||
|
||||
gabutdm = callPackage ../applications/networking/gabutdm { };
|
||||
|
|
Loading…
Reference in a new issue