nikstur/bombon

Nix CycloneDX Software Bills of Materials (SBOMs)

Rust

148

498 commits

updated Sep 1, 2026

See the code

README

Bombon

Automagically build CycloneDX Software Bills of Materials (SBOMs) for Nix packages!

Bombon generates CycloneDX v1.7 SBOMs which aim to be compliant with:

If you find that they aren't compliant in any way, please open an issue!

Getting Started

Flakes

nix flake init -t github:nikstur/bombon

Or manually copy this to flake.nix in your repository:

# file: flake.nix
{
  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
    bombon.url = "github:nikstur/bombon";
    bombon.inputs.nixpkgs.follows = "nixpkgs";
  };

  outputs = { self, nixpkgs, bombon }:
    let
      system = "x86_64-linux";
      pkgs = import nixpkgs { inherit system; };
    in
    {
      packages.${system}.default = bombon.lib.${system}.buildBom pkgs.hello { };
    };
}

Niv

niv init
niv add nikstur/bombon
# file: default.nix
let
  sources = import ./nix/sources.nix { };
  pkgs = import sources.nixpkgs { };
  bombon = import sources.bombon { inherit pkgs; };
in
bombon.buildBom pkgs.hello { }

Vendored Dependencies

Some language ecosystems in Nixpkgs (most notably Rust, Go, and JavaScript) vendor dependencies. This means that not every dependency is its own derivation and thus bombon cannot record their information as it does with "normal" Nix dependencies. However, bombon can automatically read SBOMs generated by other tools (like cargo-cyclonedx, npm sbom, or cyclonedx-gomod) for the vendored dependencies from a passthru derivation called bombonVendoredSbom.

You can use the passthruVendoredSbom.rust function to add the bombonVendoredSbom passthru derivation to a Rust package:

myPackageWithSbom = bombon.passthruVendoredSbom.rust myPackage { inherit pkgs; };

Or using Flakes:

myPackageWithSbom = bombon.lib.${system}.passthruVendoredSbom.rust myPackage { inherit pkgs; };

Similarly, the passthruVendoredSbom.npm function covers packages that vendor their npm dependencies with fetchNpmDeps and install them with npmConfigHook, such as anything built with buildNpmPackage:

myNpmPackageWithSbom = bombon.passthruVendoredSbom.npm myNpmPackage { inherit pkgs; };

The passthruVendoredSbom.go function covers packages built with buildGoModule:

myGoPackageWithSbom = bombon.passthruVendoredSbom.go myGoPackage { inherit pkgs; };

An SBOM built from this new derivation will now include the vendored dependencies.

Options

buildBom accepts options as an attribute set. All attributes are optional:

  • extraPaths: a list of store paths to also consider for the SBOM. This is useful when you build images that discard their references (e.g. with unsafeDiscardReferences but you still want their contents to appear in the SBOM. The extraPaths will appear as components of the main derivation.
  • includeBuildtimeDependencies: boolean flag to include buildtime dependencies in output.
  • excludes: a list of regex patterns of store paths to exclude from the final SBOM.

Example:

bombon.lib.${system}.buildBom pkgs.hello {
  extraPaths = [ pkgs.git ];
  includeBuildtimeDependencies = true;
  excludes = [ "service" ];
}

passthruVendoredSbom.rust and passthruVendoredSbom.npm also accept includeBuildtimeDependencies as an optional attribute. For passthruVendoredSbom.npm this includes the npm dev dependencies in the vendored SBOM. passthruVendoredSbom.go does not accept it because the SBOM is generated from the build info embedded in the compiled binaries, which only covers the modules linked into them.

Example:

myPackageWithSbom = bombon.passthruVendoredSbom.rust myPackage { inherit pkgs; includeBuildtimeDependencies = true; };

Contributing

During development, the Nix Repl is a convenient and quick way to test changes. Start the repl, loading your local version of nixpkgs.

nix repl <nixpkgs>

Inside the repl, load the bombon flake and build the BOM for a package you are interested in.

:l .
:b lib.x86_64-linux.buildBom python3 { }

Remember to re-load the bombon flake every time you made changes to any of the source code.

Acknowledgements

The way dependencies are retrieved using Nix is heavily influenced by this blog article from Nicolas Mattia.

bill-of-materials
bom
components
cyclonedx
dependencies
license
nix
nixos
purl
sbom
sbom-generator
software-bill-of-materials
spdx

Contributors

nikstur

362 commits

renovate[bot]

107 commits

0xf09f95b4

7 commits

Kranzes

4 commits

nikstur/bombon

Nix CycloneDX Software Bills of Materials (SBOMs)

Rust

148

498 commits

updated Sep 1, 2026

See the code

README

Bombon

Automagically build CycloneDX Software Bills of Materials (SBOMs) for Nix packages!

Bombon generates CycloneDX v1.7 SBOMs which aim to be compliant with:

If you find that they aren't compliant in any way, please open an issue!

Getting Started

Flakes

nix flake init -t github:nikstur/bombon

Or manually copy this to flake.nix in your repository:

# file: flake.nix
{
  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
    bombon.url = "github:nikstur/bombon";
    bombon.inputs.nixpkgs.follows = "nixpkgs";
  };

  outputs = { self, nixpkgs, bombon }:
    let
      system = "x86_64-linux";
      pkgs = import nixpkgs { inherit system; };
    in
    {
      packages.${system}.default = bombon.lib.${system}.buildBom pkgs.hello { };
    };
}

Niv

niv init
niv add nikstur/bombon
# file: default.nix
let
  sources = import ./nix/sources.nix { };
  pkgs = import sources.nixpkgs { };
  bombon = import sources.bombon { inherit pkgs; };
in
bombon.buildBom pkgs.hello { }

Vendored Dependencies

Some language ecosystems in Nixpkgs (most notably Rust, Go, and JavaScript) vendor dependencies. This means that not every dependency is its own derivation and thus bombon cannot record their information as it does with "normal" Nix dependencies. However, bombon can automatically read SBOMs generated by other tools (like cargo-cyclonedx, npm sbom, or cyclonedx-gomod) for the vendored dependencies from a passthru derivation called bombonVendoredSbom.

You can use the passthruVendoredSbom.rust function to add the bombonVendoredSbom passthru derivation to a Rust package:

myPackageWithSbom = bombon.passthruVendoredSbom.rust myPackage { inherit pkgs; };

Or using Flakes:

myPackageWithSbom = bombon.lib.${system}.passthruVendoredSbom.rust myPackage { inherit pkgs; };

Similarly, the passthruVendoredSbom.npm function covers packages that vendor their npm dependencies with fetchNpmDeps and install them with npmConfigHook, such as anything built with buildNpmPackage:

myNpmPackageWithSbom = bombon.passthruVendoredSbom.npm myNpmPackage { inherit pkgs; };

The passthruVendoredSbom.go function covers packages built with buildGoModule:

myGoPackageWithSbom = bombon.passthruVendoredSbom.go myGoPackage { inherit pkgs; };

An SBOM built from this new derivation will now include the vendored dependencies.

Options

buildBom accepts options as an attribute set. All attributes are optional:

  • extraPaths: a list of store paths to also consider for the SBOM. This is useful when you build images that discard their references (e.g. with unsafeDiscardReferences but you still want their contents to appear in the SBOM. The extraPaths will appear as components of the main derivation.
  • includeBuildtimeDependencies: boolean flag to include buildtime dependencies in output.
  • excludes: a list of regex patterns of store paths to exclude from the final SBOM.

Example:

bombon.lib.${system}.buildBom pkgs.hello {
  extraPaths = [ pkgs.git ];
  includeBuildtimeDependencies = true;
  excludes = [ "service" ];
}

passthruVendoredSbom.rust and passthruVendoredSbom.npm also accept includeBuildtimeDependencies as an optional attribute. For passthruVendoredSbom.npm this includes the npm dev dependencies in the vendored SBOM. passthruVendoredSbom.go does not accept it because the SBOM is generated from the build info embedded in the compiled binaries, which only covers the modules linked into them.

Example:

myPackageWithSbom = bombon.passthruVendoredSbom.rust myPackage { inherit pkgs; includeBuildtimeDependencies = true; };

Contributing

During development, the Nix Repl is a convenient and quick way to test changes. Start the repl, loading your local version of nixpkgs.

nix repl <nixpkgs>

Inside the repl, load the bombon flake and build the BOM for a package you are interested in.

:l .
:b lib.x86_64-linux.buildBom python3 { }

Remember to re-load the bombon flake every time you made changes to any of the source code.

Acknowledgements

The way dependencies are retrieved using Nix is heavily influenced by this blog article from Nicolas Mattia.

bill-of-materials
bom
components
cyclonedx
dependencies
license
nix
nixos
purl
sbom
sbom-generator
software-bill-of-materials
spdx

Contributors

nikstur

362 commits

renovate[bot]

107 commits

0xf09f95b4

7 commits

Kranzes

4 commits

Languages

Rust

59.3%

Nix

40.7%