lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

stacs: init at 0.2.0

+44
+42
pkgs/tools/security/stacs/default.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , python3 4 + }: 5 + 6 + python3.pkgs.buildPythonApplication rec { 7 + pname = "stacs"; 8 + version = "0.2.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "stacscan"; 12 + repo = pname; 13 + rev = version; 14 + sha256 = "00ZYdpJktqUXdzPcouHyZcOQyFm7jdFNVuDqsufOviE="; 15 + }; 16 + 17 + nativeBuildInputs = with python3.pkgs; [ 18 + setupmeta 19 + ]; 20 + 21 + propagatedBuildInputs = with python3.pkgs; [ 22 + click 23 + pydantic 24 + typing-extensions 25 + yara-python 26 + ]; 27 + 28 + checkInputs = with python3.pkgs; [ 29 + pytestCheckHook 30 + ]; 31 + 32 + pythonImportsCheck = [ 33 + "stacs" 34 + ]; 35 + 36 + meta = with lib; { 37 + description = "Static token and credential scanner"; 38 + homepage = "https://github.com/stacscan/stacs"; 39 + license = with licenses; [ bsd3 ]; 40 + maintainers = with maintainers; [ fab ]; 41 + }; 42 + }
+2
pkgs/top-level/all-packages.nix
··· 3543 3543 3544 3544 ssmsh = callPackage ../tools/admin/ssmsh { }; 3545 3545 3546 + stacs = callPackage ../tools/security/stacs { }; 3547 + 3546 3548 stagit = callPackage ../development/tools/stagit { }; 3547 3549 3548 3550 starboard = callPackage ../applications/networking/cluster/starboard { };