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