dotfiles files and stuff
0
fork

Configure Feed

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

work: delete detect-secrets

No longer used/required by work.

-27
-25
nix/home-manager/detect-secrets.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, isPy27, pyyaml, requests }: 2 - 3 - buildPythonPackage rec { 4 - pname = "detect-secrets"; 5 - version = "1.1.2"; 6 - disabled = isPy27; 7 - 8 - src = fetchFromGitHub { 9 - owner = "Contrast-Labs"; 10 - repo = pname; 11 - rev = "7ed02347560610f3a2c963c0782a1aa853c6cde8"; 12 - sha256 = "1l35wf4xchmg7qnm4i93kpqxjk50k04v3kff03dqvga34wqac4jx"; 13 - }; 14 - 15 - propagatedBuildInputs = [ 16 - pyyaml 17 - requests 18 - ]; 19 - 20 - meta = with lib; { 21 - description = "An enterprise friendly way of detecting and preventing secrets in code."; 22 - homepage = "https://github.com/Contrast-Labs/detect-secrets"; 23 - license = licenses.asl20; 24 - }; 25 - }
-2
nix/work.nix
··· 85 85 ]; 86 86 87 87 home-manager.users.${user} = { 88 - home.packages = [ (pkgs.python3Packages.callPackage ./home-manager/detect-secrets.nix { }) ]; 89 - 90 88 programs.git.settings = { 91 89 user.email = "ehden@contrastsecurity.com"; 92 90