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

32 lines
828 B
Nix
Raw Normal View History

2020-03-21 04:45:00 -05:00
{ stdenv, buildGoModule, fetchFromGitHub, makeWrapper, rpm, xz, Security }:
2019-01-05 22:40:08 -05:00
2019-12-22 00:00:00 -05:00
buildGoModule rec {
2019-01-05 22:40:08 -05:00
pname = "clair";
2019-12-22 00:00:00 -05:00
version = "2.1.2";
2019-01-05 22:40:08 -05:00
src = fetchFromGitHub {
2019-12-22 00:00:00 -05:00
owner = "quay";
2019-07-11 00:04:32 +08:00
repo = pname;
2019-01-05 22:40:08 -05:00
rev = "v${version}";
2019-12-22 00:00:00 -05:00
sha256 = "14dh9iv2g138rivvfk135m3l90kk6c1ln1iqxhbi7s99h1jixbqw";
2019-01-05 22:40:08 -05:00
};
2019-12-22 00:00:00 -05:00
modSha256 = "0rgkrid58kji39nlmiii95r8shbzr6dwalj5m7qwxy5w1rcaljr5";
2020-03-21 04:45:00 -05:00
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
2019-01-05 22:40:08 -05:00
nativeBuildInputs = [ makeWrapper ];
postInstall = ''
2019-12-22 00:00:00 -05:00
wrapProgram $out/bin/clair \
2020-03-21 04:45:00 -05:00
--prefix PATH : "${stdenv.lib.makeBinPath [ rpm xz ]}"
2019-01-05 22:40:08 -05:00
'';
2020-03-21 04:45:00 -05:00
meta = with stdenv.lib; {
2019-01-05 22:40:08 -05:00
description = "Vulnerability Static Analysis for Containers";
2019-12-22 00:00:00 -05:00
homepage = "https://github.com/quay/clair";
2019-01-05 22:40:08 -05:00
license = licenses.asl20;
2019-07-11 00:04:32 +08:00
maintainers = with maintainers; [ marsam ];
2019-01-05 22:40:08 -05:00
};
}