mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, docker
|
|
, lib
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "docker-sbom";
|
|
version = "0.6.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "docker";
|
|
repo = "sbom-cli-plugin";
|
|
rev = "tags/v${version}";
|
|
hash = "sha256-i3gIogHb0oW/VDuZUo6LGBmvqs/XfMXjpvTTYeGCK7Q=";
|
|
};
|
|
|
|
patches = [
|
|
# Disable tests that require a docker daemon to be running
|
|
# in the sandbox
|
|
./sbom-disable-tests.patch
|
|
];
|
|
|
|
vendorHash = "sha256-XPPVAdY2NaasZ9bkf24VWWk3X5pjnryvsErYIWkeekc=";
|
|
|
|
nativeBuildInputs = [ docker ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -D $GOPATH/bin/sbom-cli-plugin $out/libexec/docker/cli-plugins/docker-sbom
|
|
|
|
mkdir -p $out/bin
|
|
ln -s $out/libexec/docker/cli-plugins/docker-sbom $out/bin/docker-sbom
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Plugin for Docker CLI to support SBOM creation using Syft";
|
|
mainProgram = "docker-sbom";
|
|
homepage = "https://github.com/docker/sbom-cli-plugin";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ raboof ];
|
|
};
|
|
}
|