Unverified Commit 542c1d21 authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #204138 from fabaff/gitleaks-bump

gitleaks: 8.15.1 -> 8.15.2 
parents 00ea450a 518f576b
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -8,16 +8,16 @@

buildGoModule rec {
  pname = "gitleaks";
  version = "8.15.1";
  version = "8.15.2";

  src = fetchFromGitHub {
    owner = "zricethezav";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-iIjQytsZDz9H5wT44jBBZCx8NvfAhNBl7pTv3mCkeMY=";
    hash = "sha256-3hDAkKuKBp3Q61rDWXy4NWgOteSQAjcdom0GzM35hlc=";
  };

  vendorSha256 = "sha256-Ev0/CSpwJDmc+Dvu/bFDzsgsq80rWImJWXNAUqYHgoE=";
  vendorHash = "sha256-Ev0/CSpwJDmc+Dvu/bFDzsgsq80rWImJWXNAUqYHgoE=";

  ldflags = [
    "-s"
@@ -25,7 +25,9 @@ buildGoModule rec {
    "-X github.com/zricethezav/gitleaks/v${lib.versions.major version}/cmd.Version=${version}"
  ];

  nativeBuildInputs = [ installShellFiles ];
  nativeBuildInputs = [
    installShellFiles
  ];

  # With v8 the config tests are are blocking
  doCheck = false;
@@ -49,6 +51,7 @@ buildGoModule rec {
      API keys and tokens in git repos.
    '';
    homepage = "https://github.com/zricethezav/gitleaks";
    changelog = "https://github.com/zricethezav/gitleaks/releases/tag/v${version}";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };