Skip to content

Include cpe field from meta #150

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.4.0 (unreleased)

## Added

- Added the ability to collect CPE information from a package's metadata.

## 0.3.0

### Added
Expand Down
3 changes: 2 additions & 1 deletion nix/packages/transformer.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
let
cargoToml = builtins.fromTOML (builtins.readFile ../../rust/transformer/Cargo.toml);
in
rustPlatform.buildRustPackage {
rustPlatform.buildRustPackage rec {
pname = cargoToml.package.name;
inherit (cargoToml.package) version;

Expand All @@ -25,5 +25,6 @@ rustPlatform.buildRustPackage {
license = licenses.mit;
maintainers = with lib.maintainers; [ nikstur ];
mainProgram = "bombon-transformer";
cpe = "cpe:2.3:a:nikstur:bombon-transformer:${version}:*:*:*:*:*:*:*";
};
}
3 changes: 2 additions & 1 deletion rust/transformer/src/cyclonedx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use anyhow::{Context, Result};
use cyclonedx_bom::external_models::normalized_string::NormalizedString;
use cyclonedx_bom::external_models::uri::{Purl, Uri};
use cyclonedx_bom::models::bom::{Bom, UrnUuid};
use cyclonedx_bom::models::component::{Classification, Component, Components, Scope};
use cyclonedx_bom::models::component::{Classification, Component, Components, Cpe, Scope};
use cyclonedx_bom::models::external_reference::{
self, ExternalReference, ExternalReferenceType, ExternalReferences,
};
Expand Down Expand Up @@ -161,6 +161,7 @@ impl CycloneDXComponent {
if let Some(meta) = derivation.meta {
component.licenses = convert_licenses(&meta);
component.description = meta.description.map(|s| NormalizedString::new(&s));
component.cpe = meta.cpe.map(|s| Cpe::new(&s));
if let Some(homepage) = meta.homepage {
external_references.push(convert_homepage(&homepage));
}
Expand Down
1 change: 1 addition & 0 deletions rust/transformer/src/derivation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ pub struct Meta {
pub license: Option<LicenseField>,
pub homepage: Option<String>,
pub description: Option<String>,
pub cpe: Option<String>,
}

#[derive(Deserialize, Clone, Debug)]
Expand Down