From ea91fdc217737a2484c07ef5efd2fd0b18666755 Mon Sep 17 00:00:00 2001 From: QuincePie Date: Sun, 1 Sep 2024 19:23:15 -0500 Subject: [PATCH] cdxgen: 10.8.1 -> 10.9.6 --- pkgs/tools/security/cdxgen/default.nix | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/pkgs/tools/security/cdxgen/default.nix b/pkgs/tools/security/cdxgen/default.nix index c494598c10d2..948cbc9dd7cf 100644 --- a/pkgs/tools/security/cdxgen/default.nix +++ b/pkgs/tools/security/cdxgen/default.nix @@ -1,23 +1,24 @@ -{ fetchFromGitHub -, lib -, makeWrapper -, nodejs -, node-gyp -, pnpm_9 -, python3 -, stdenv -, xcbuild +{ + fetchFromGitHub, + lib, + makeWrapper, + nodejs, + node-gyp, + pnpm_9, + python3, + stdenv, + xcbuild, }: stdenv.mkDerivation (finalAttrs: { pname = "cdxgen"; - version = "10.8.1"; + version = "10.9.6"; src = fetchFromGitHub { owner = "CycloneDX"; repo = "cdxgen"; rev = "v${finalAttrs.version}"; - hash = "sha256-PFvSHuIaHaGfKI5s7DOW1adSKpnURaQtk5lAO9lr1OM="; + hash = "sha256-WgY0soHwedYbQNDvDIqtaxMSzVcaOVV2/22wOXU2nbA="; }; nativeBuildInputs = [ @@ -30,7 +31,7 @@ stdenv.mkDerivation (finalAttrs: { pnpmDeps = pnpm_9.fetchDeps { inherit (finalAttrs) pname version src; - hash = "sha256-IO7hn5xHdlQ+uyH8RWc7ZnnthXydCnMSde22YYMWOoc="; + hash = "sha256-IgmTYmCmZ65Da5zL6Tx7P4bt2o+YhX0UvU0DEONmr7w="; }; buildPhase = '' @@ -56,7 +57,6 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { description = "Creates CycloneDX Software Bill-of-Materials (SBOM) for your projects from source and container images"; mainProgram = "cdxgen";