summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-19 22:14:45 +0100
committerGitHub <noreply@github.com>2021-01-19 22:14:45 +0100
commit1ca55e5c3b08be8cedd226421df8424ce63e4a3a (patch)
tree648f79b91da190ad460ece60dfeb35888554d894 /pkgs
parentbb5ab2b09dd6af3dbb8fab6489fbb31e37e6b072 (diff)
parent84634ff0c3b817c224ef99eaddf703c4a6e9dec0 (diff)
Merge pull request #110015 from fabaff/gitleaks
gitleaks: init at 7.2.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/security/gitleaks/default.nix29
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/tools/security/gitleaks/default.nix b/pkgs/tools/security/gitleaks/default.nix
new file mode 100644
index 000000000000..982774612759
--- /dev/null
+++ b/pkgs/tools/security/gitleaks/default.nix
@@ -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 ];
+ };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 6c067d2edfc0..96aa229a1c04 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -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;
};