33 lines
833 B
Nix
33 lines
833 B
Nix
{ lib, buildGoModule, fetchFromGitHub, makeWrapper, rpm, xz }:
|
|
|
|
buildGoModule rec {
|
|
pname = "clair";
|
|
version = "4.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "quay";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-uGvcr7TG/NCi0YoYZnQU11zOxXDhFTnCmLQVxOqmXLY=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-CO4U8uSQeHXLPj5PH/SsOI/LjT2Rs/mBHsvNTudx72I=";
|
|
|
|
doCheck = false;
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/clair \
|
|
--prefix PATH : "${lib.makeBinPath [ rpm xz ]}"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Vulnerability Static Analysis for Containers";
|
|
homepage = "https://github.com/quay/clair";
|
|
changelog = "https://github.com/quay/clair/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ marsam ];
|
|
};
|
|
}
|