6 python3.pkgs.buildPythonApplication rec {
8 version = "unstable-2022-05-26";
11 src = fetchFromGitHub {
14 rev = "1b19d6040cab279b97bf002934bf6f8b34d6a8b4";
15 hash = "sha256-cL1mnyzIbHB/X4c7sZKVv295LNnjqwR8TZBMe9s/peg=";
18 propagatedBuildInputs = with python3.pkgs; [
26 install -vD smbscan.py $out/bin/smbscan
27 install -vd $out/${python3.sitePackages}/
28 cp {scan_internals,scan,setup,local_logging,arg_parser}.py $out/${python3.sitePackages}
29 install -vd $out/${python3.sitePackages}/wordlists/
30 cp wordlists/pattern* $out/${python3.sitePackages}/wordlists
36 description = "Tool to enumerate file shares";
37 homepage = "https://github.com/jeffhacks/smbscan";
38 license = with licenses; [ gpl3Only ];
39 maintainers = with maintainers; [ fab ];