blob: 6ebfbcbfe73dfa54f17f3c5a2a6b4202cd351b0e (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
{
lib,
buildGoModule,
fetchFromGitHub,
fetchpatch,
versionCheckHook,
installShellFiles,
stdenv,
}:
let
version = "0.17.0";
in
buildGoModule {
pname = "sbom-utility";
inherit version;
src = fetchFromGitHub {
owner = "CycloneDX";
repo = "sbom-utility";
tag = "v${version}";
hash = "sha256-LiHCA5q9IJ67jZ2JUcbCFVCYnT36nyq9QzgH9PMr9kM=";
};
vendorHash = "sha256-vyYSir5u6d5nv+2ScrHpasQGER4VFSoLb1FDUDIrtDM=";
patches = [
# work around https://github.com/CycloneDX/sbom-utility/issues/121, which otherwise
# breaks shell completions
./name.patch
# Output logs to stderr rather than stdout.
# Patch of https://github.com/CycloneDX/sbom-utility/pull/122, adapted to apply
# against v0.17.0
./stderr.patch
];
ldflags = [
"-X main.Version=${version}"
];
nativeBuildInputs = [
installShellFiles
];
nativeInstallCheckInputs = [
versionCheckHook
];
doInstallCheck = true;
preCheck = ''
cd test
'';
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
for shell in bash fish zsh; do
installShellCompletion --cmd sbom-utility \
--$shell <($out/bin/sbom-utility -q completion $shell)
done
'';
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";
};
}
|