secretscanner: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-07-01 12:15:16 +02:00 committed by GitHub
parent 242c67349b
commit 7bba50f514
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,7 +15,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "deepfence";
repo = "SecretScanner";
rev = "v${version}";
rev = "refs/tags/v${version}";
fetchSubmodules = true;
hash = "sha256-lTUZLuEiC9xpHYWn3uv4ZtbvHX6ETsjxacjd/O0kU8I=";
};
@ -33,7 +33,9 @@ buildGoModule rec {
protoc-gen-go-grpc
];
buildInputs = [ hyperscan ];
buildInputs = [
hyperscan
];
preBuild = ''
# Compile proto files
@ -47,6 +49,7 @@ buildGoModule rec {
meta = with lib; {
description = "Tool to find secrets and passwords in container images and file systems";
homepage = "https://github.com/deepfence/SecretScanner";
changelog = "https://github.com/deepfence/SecretScanner/releases/tag/v${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};