59d4583cf3
Signed-off-by: Sascha Grunert <sgrunert@suse.com>
42 lines
954 B
Nix
42 lines
954 B
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, glib
|
|
, glibc
|
|
, systemd
|
|
, nixosTests
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "conmon";
|
|
version = "2.0.23";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "containers";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1agygycpdacxx0pmbyxyyps5nv4662xcdfkfxd19b5npam8iiwpx";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ glib systemd ]
|
|
++ stdenv.lib.optionals (!stdenv.hostPlatform.isMusl) [ glibc glibc.static ];
|
|
|
|
# manpage requires building the vendored go-md2man
|
|
makeFlags = [ "bin/conmon" ];
|
|
|
|
installPhase = ''
|
|
install -D bin/conmon -t $out/bin
|
|
'';
|
|
|
|
passthru.tests = { inherit (nixosTests) cri-o podman; };
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/containers/conmon";
|
|
description = "An OCI container runtime monitor";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ] ++ teams.podman.members;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|