Merge pull request #238503 from Misaka13514/init-fscan
fscan: init at 1.8.2
This commit is contained in:
commit
fb6fb6b095
@ -10688,6 +10688,15 @@
|
|||||||
githubId = 1776903;
|
githubId = 1776903;
|
||||||
name = "Andrew Abbott";
|
name = "Andrew Abbott";
|
||||||
};
|
};
|
||||||
|
Misaka13514 = {
|
||||||
|
name = "Misaka13514";
|
||||||
|
email = "Misaka13514@gmail.com";
|
||||||
|
matrix = "@misaka13514:matrix.org";
|
||||||
|
github = "Misaka13514";
|
||||||
|
githubId = 54669781;
|
||||||
|
keys =
|
||||||
|
[{ fingerprint = "293B 93D8 A471 059F 85D7 16A6 5BA9 2099 D9BE 2DAA"; }];
|
||||||
|
};
|
||||||
mislavzanic = {
|
mislavzanic = {
|
||||||
email = "mislavzanic3@gmail.com";
|
email = "mislavzanic3@gmail.com";
|
||||||
github = "mislavzanic";
|
github = "mislavzanic";
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
@ -1579,6 +1579,8 @@ with pkgs;
|
|||||||
|
|
||||||
etlegacy = callPackage ../games/etlegacy { lua = lua5_4; };
|
etlegacy = callPackage ../games/etlegacy { lua = lua5_4; };
|
||||||
|
|
||||||
|
fscan = callPackage ../tools/security/fscan { };
|
||||||
|
|
||||||
copier = callPackage ../tools/misc/copier { };
|
copier = callPackage ../tools/misc/copier { };
|
||||||
|
|
||||||
gabutdm = callPackage ../applications/networking/gabutdm { };
|
gabutdm = callPackage ../applications/networking/gabutdm { };
|
||||||
|
Loading…
Reference in New Issue
Block a user