gitleaks: 8.28.0 -> 8.30.0 (#466590)

This commit is contained in:
Fabian Affolter
2025-11-30 19:46:19 +00:00
committed by GitHub
+6 -6
View File
@@ -11,21 +11,21 @@
buildGoModule rec {
pname = "gitleaks";
version = "8.28.0";
version = "8.30.0";
src = fetchFromGitHub {
owner = "gitleaks";
repo = "gitleaks";
tag = "v${version}";
hash = "sha256-smh3Ge278lYVEcs6r1F43daexgjgddy1HKhU5E4CBYM=";
hash = "sha256-nCalZlKvH3d75GKo3Qr5580kG77A2zTvsddLElYwZ8A=";
};
vendorHash = "sha256-dd9sHt5t0s4Vff1rOwQY1OC+0FIw0SDt/cwJN+IL5D8=";
vendorHash = "sha256-whJtl34dNltH/dk9qWSThcCYXC0x9PzbAUOO97Int+k=";
ldflags = [
"-s"
"-w"
"-X=github.com/zricethezav/gitleaks/v${lib.versions.major version}/cmd.Version=${version}"
"-X=github.com/zricethezav/gitleaks/v${lib.versions.major version}/version.Version=${version}"
];
nativeBuildInputs = [
@@ -53,8 +53,8 @@ buildGoModule rec {
API keys and tokens in git repos.
'';
homepage = "https://github.com/gitleaks/gitleaks";
changelog = "https://github.com/gitleaks/gitleaks/releases/tag/v${version}";
license = with lib.licenses; [ mit ];
changelog = "https://github.com/gitleaks/gitleaks/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
fab
friedow