Merge pull request #233001 from fabaff/bearer

bearer: init at 1.7.0
This commit is contained in:
Fabian Affolter 2023-05-21 20:54:17 +02:00 committed by GitHub
commit 9d95abdf1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

@ -326,6 +326,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 { };