nixpkgs/pkgs/tools/admin/clair/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
950 B
Nix
Raw Normal View History

2022-06-13 10:12:50 +00:00
{ 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";
2023-01-27 05:35:32 +00:00
version = "4.6.0";
2019-01-06 03:40:08 +00:00
src = fetchFromGitHub {
2019-12-22 05:00:00 +00:00
owner = "quay";
2019-07-10 16:04:32 +00:00
repo = pname;
2019-01-06 03:40:08 +00:00
rev = "v${version}";
2023-01-27 05:35:32 +00:00
hash = "sha256-Dl1wwK4OSv/nvhT7bH6qOdX4/qL3xFdmz5qiYaEm59Y=";
2019-01-06 03:40:08 +00:00
};
2023-01-27 05:35:32 +00:00
vendorHash = "sha256-NqEpJHBZfzUQJ+H8CQBDdb37nlwA+JuXhZzfCAyO0Co=";
2019-12-22 05:00:00 +00:00
2022-06-13 10:12:50 +00:00
nativeBuildInputs = [
makeWrapper
];
2019-01-06 03:40:08 +00:00
2022-06-13 10:12:50 +00:00
subPackages = [
"cmd/clair"
"cmd/clairctl"
];
2022-05-28 04:20:00 +00:00
2022-06-13 10:12:50 +00:00
ldflags = [
"-s"
"-w"
"-X main.Version=${version}"
];
2022-05-28 04:20:00 +00:00
2019-01-06 03:40:08 +00:00
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 16:04:32 +00:00
maintainers = with maintainers; [ marsam ];
2019-01-06 03:40:08 +00:00
};
}