Skip to content

Commit

Permalink
Merge pull request NixOS#110015 from fabaff/gitleaks
Browse files Browse the repository at this point in the history
gitleaks: init at 7.2.0
  • Loading branch information
SuperSandro2000 authored Jan 19, 2021
2 parents bb5ab2b + 84634ff commit 1ca55e5
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pkgs/tools/security/gitleaks/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{ buildGoModule
, fetchFromGitHub
, lib
}:

buildGoModule rec {
pname = "gitleaks";
version = "7.2.0";

src = fetchFromGitHub {
owner = "zricethezav";
repo = pname;
rev = "v${version}";
sha256 = "1pdbkjx8h6ijypsxyv34lykymaqf8wnfyjk3ldp49apbx01bl34y";
};

vendorSha256 = "0kk8ci7vprqw4v7cigspshfd13k2wyy4pdkxf11pqc2fz8j07kh9";

meta = with lib; {
description = "Scan git repos (or files) for secrets";
longDescription = ''
Gitleaks is a SAST tool for detecting hardcoded secrets like passwords,
API keys, and tokens in git repos.
'';
homepage = "https://github.com/zricethezav/gitleaks";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4539,6 +4539,8 @@ in

gitlab-workhorse = callPackage ../applications/version-management/gitlab/gitlab-workhorse { };

gitleaks = callPackage ../tools/security/gitleaks { };

gitaly = callPackage ../applications/version-management/gitlab/gitaly {
ruby = ruby_2_7;
};
Expand Down

0 comments on commit 1ca55e5

Please sign in to comment.