summary refs log tree commit diff
path: root/pkgs/tools/security/gitleaks
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-01-19 21:56:03 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2021-01-19 21:56:03 +0100
commit84634ff0c3b817c224ef99eaddf703c4a6e9dec0 (patch)
tree80bca2fca61966b82ea0b9214e81d20186b3c6da /pkgs/tools/security/gitleaks
parentdd3238c002f51c2ab8fc325bf4fa330a29c64ed6 (diff)
downloadnixpkgs-84634ff0c3b817c224ef99eaddf703c4a6e9dec0.tar
nixpkgs-84634ff0c3b817c224ef99eaddf703c4a6e9dec0.tar.gz
nixpkgs-84634ff0c3b817c224ef99eaddf703c4a6e9dec0.tar.bz2
nixpkgs-84634ff0c3b817c224ef99eaddf703c4a6e9dec0.tar.lz
nixpkgs-84634ff0c3b817c224ef99eaddf703c4a6e9dec0.tar.xz
nixpkgs-84634ff0c3b817c224ef99eaddf703c4a6e9dec0.tar.zst
nixpkgs-84634ff0c3b817c224ef99eaddf703c4a6e9dec0.zip
gitleaks: init at 7.2.0
Diffstat (limited to 'pkgs/tools/security/gitleaks')
-rw-r--r--pkgs/tools/security/gitleaks/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/tools/security/gitleaks/default.nix b/pkgs/tools/security/gitleaks/default.nix
new file mode 100644
index 00000000000..98277461275
--- /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 ];
+  };
+}