mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
3935b40f3c
Signed-off-by: Markus Theil <theil.markus@gmail.com>
34 lines
864 B
Nix
34 lines
864 B
Nix
{ lib
|
|
, buildDotnetModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildDotnetModule rec {
|
|
pname = "cyclonedx-cli";
|
|
version = "0.25.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "CycloneDX";
|
|
repo = "cyclonedx-cli";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-kAMSdUMr/NhsbMBViFJQlzgUNnxWgi/CLb3CW9OpWFo=";
|
|
};
|
|
|
|
nugetDeps = ./deps.nix;
|
|
|
|
preFixup = ''
|
|
cd $out/bin
|
|
find . ! -name 'cyclonedx' -type f -exec rm -f {} +
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "CycloneDX CLI tool for SBOM analysis, merging, diffs and format conversions";
|
|
homepage = "https://github.com/CycloneDX/cyclonedx-cli";
|
|
changelog = "https://github.com/CycloneDX/cyclonedx-cli/releases/tag/v${version}";
|
|
maintainers = with maintainers; [ thillux ];
|
|
license = licenses.asl20;
|
|
platforms = with platforms; (linux ++ darwin);
|
|
mainProgram = "cyclonedx";
|
|
};
|
|
}
|