sbom-utility: init at 0.15.0
Signed-off-by: Markus Theil <theil.markus@gmail.com>
This commit is contained in:
parent
3935b40f3c
commit
135451e977
1 changed files with 32 additions and 0 deletions
32
pkgs/by-name/sb/sbom-utility/package.nix
Normal file
32
pkgs/by-name/sb/sbom-utility/package.nix
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
{
|
||||||
|
lib
|
||||||
|
, buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "sbom-utility";
|
||||||
|
version = "0.15.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "CycloneDX";
|
||||||
|
repo = "sbom-utility";
|
||||||
|
rev = "refs/tags/v${version}";
|
||||||
|
hash = "sha256-tNLMrtJj1eeJ4sVhDRR24/KVI1HzZSRquiImuDTNZFI=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorHash = "sha256-EdzI5ypwZRksQVmcfGDUgEMa4CeAPcm237ZaKqmWQDY=";
|
||||||
|
|
||||||
|
preCheck = ''
|
||||||
|
cd test
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Utility that provides an API platform for validating, querying and managing BOM data";
|
||||||
|
homepage = "https://github.com/CycloneDX/sbom-utility";
|
||||||
|
changelog = "https://github.com/CycloneDX/sbom-utility/releases/tag/v${version}";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ thillux ];
|
||||||
|
mainProgram = "sbom-utility";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue