mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 18:53:17 +00:00
46 lines
1013 B
Nix
46 lines
1013 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, testers
|
|
, bearer
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "bearer";
|
|
version = "1.27.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bearer";
|
|
repo = "bearer";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-3kJPBvw12iyAu9WVIZgyUrsW6XQ0AqpDmDl1E72vyuE=";
|
|
};
|
|
|
|
vendorHash = "sha256-ikrpFnn+CTuhttd3gVyoKU3RIBRR/zL8YjvE0tjIH6I=";
|
|
|
|
subPackages = [
|
|
"cmd/bearer"
|
|
];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X=github.com/bearer/bearer/cmd/bearer/build.Version=${version}"
|
|
];
|
|
|
|
passthru.tests = {
|
|
version = testers.testVersion {
|
|
package = bearer;
|
|
command = "bearer version";
|
|
};
|
|
};
|
|
|
|
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; [ elastic20 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|