3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/admin/clair/default.nix

33 lines
833 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, makeWrapper, rpm, xz }:
2019-01-06 03:40:08 +00:00
2019-12-22 05:00:00 +00:00
buildGoModule rec {
2019-01-06 03:40:08 +00:00
pname = "clair";
2021-12-06 08:53:36 +00:00
version = "4.3.5";
2019-01-06 03:40:08 +00:00
src = fetchFromGitHub {
2019-12-22 05:00:00 +00:00
owner = "quay";
2019-07-10 17:04:32 +01:00
repo = pname;
2019-01-06 03:40:08 +00:00
rev = "v${version}";
2021-12-06 08:53:36 +00:00
sha256 = "sha256-XV1lSEg6ksa5Y1jPKpVw3l+3pWkf6iBrJ+TBqVoj60k=";
2019-01-06 03:40:08 +00:00
};
2021-12-06 08:53:36 +00:00
vendorSha256 = "sha256-U5uPTd9RHJnt3It7iluu73ihuDiIl3kCy/1f2bRqhBY=";
2019-12-22 05:00:00 +00:00
doCheck = false;
2019-01-06 03:40:08 +00:00
nativeBuildInputs = [ makeWrapper ];
postInstall = ''
2019-12-22 05:00:00 +00:00
wrapProgram $out/bin/clair \
--prefix PATH : "${lib.makeBinPath [ rpm xz ]}"
2019-01-06 03:40:08 +00:00
'';
meta = with lib; {
2019-01-06 03:40:08 +00:00
description = "Vulnerability Static Analysis for Containers";
2019-12-22 05:00:00 +00:00
homepage = "https://github.com/quay/clair";
2020-12-26 04:20:00 +00:00
changelog = "https://github.com/quay/clair/blob/v${version}/CHANGELOG.md";
2019-01-06 03:40:08 +00:00
license = licenses.asl20;
2019-07-10 17:04:32 +01:00
maintainers = with maintainers; [ marsam ];
2019-01-06 03:40:08 +00:00
};
}