bearer: init at 1.7.0

This commit is contained in:
Fabian Affolter 2023-05-20 13:17:49 +02:00
parent b7a9deb5bd
commit 0ba8cba1b7
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,37 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "bearer";
version = "1.7.0";
src = fetchFromGitHub {
owner = "bearer";
repo = "bearer";
rev = "refs/tags/v${version}";
hash = "sha256-ecLJvV2gUY6uUeCUsVtDSVOQnZnsThGtguWWzb4vsoE=";
};
vendorHash = "sha256-EHj7tpQoiwu9pocFg5chNpuekxM3bHE2+V2srD4bInQ=";
subPackages = [
"cmd/bearer"
];
ldflags = [
"-s"
"-w"
];
# doCheck = false;
meta = with lib; {
description = "Code security scanning tool (SAST) to discover, filter and prioritize security and privacy risks";
homepage = "https://github.com/bearer/bearer";
changelog = "https://github.com/Bearer/bearer/releases/tag/v${version}";
license = with licenses; [ elastic ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -324,6 +324,8 @@ with pkgs;
bakelite = callPackage ../tools/backup/bakelite { };
bearer = callPackage ../development/tools/bearer { };
benthos = callPackage ../development/tools/benthos { };
beyond-identity = callPackage ../tools/security/beyond-identity { };