nixpkgs/pkgs/tools/security/gitleaks/default.nix

34 lines
860 B
Nix
Raw Normal View History

2021-03-01 22:30:56 +00:00
{ lib
, buildGoModule
2021-01-19 20:56:03 +00:00
, fetchFromGitHub
}:
buildGoModule rec {
pname = "gitleaks";
2021-09-10 09:35:54 +00:00
version = "7.6.1";
2021-01-19 20:56:03 +00:00
src = fetchFromGitHub {
owner = "zricethezav";
repo = pname;
rev = "v${version}";
2021-09-10 09:35:54 +00:00
sha256 = "sha256-52Wi3bQvKdHoJ1nVb4OVJ9wd8hDVF+6zlVSpsEai0Jw=";
2021-01-19 20:56:03 +00:00
};
2021-09-04 09:07:54 +00:00
vendorSha256 = "sha256-86PspExE+T/IuCvpf6LAkWcCRlHPqP5VUbHAckEzALc=";
2021-01-19 20:56:03 +00:00
2021-08-21 08:23:50 +00:00
ldflags = [
"-s" "-w" "-X github.com/zricethezav/gitleaks/v${lib.versions.major version}/version.Version=${version}"
];
2021-01-19 20:56:03 +00:00
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 ];
};
}