commit
9d95abdf1f
37
pkgs/development/tools/bearer/default.nix
Normal file
37
pkgs/development/tools/bearer/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user