37 lines
830 B
Nix
Raw Normal View History

{ stdenv
, fetchFromGitHub
, pkg-config
, glib
, glibc
, systemd
2020-05-19 10:40:59 +10:00
, nixosTests
}:
stdenv.mkDerivation rec {
pname = "conmon";
2020-06-17 11:24:51 +10:00
version = "2.0.18";
src = fetchFromGitHub {
owner = "containers";
repo = pname;
rev = "v${version}";
2020-06-17 11:24:51 +10:00
sha256 = "0f32g048jamfhrds68vzirx8iqizr45wf2d4bfvdsk176amrj4k0";
};
nativeBuildInputs = [ pkg-config ];
2020-04-19 10:14:41 +10:00
buildInputs = [ glib systemd ]
++ stdenv.lib.optionals (!stdenv.hostPlatform.isMusl) [ glibc glibc.static ];
2020-04-19 10:14:41 +10:00
installFlags = [ "PREFIX=$(out)" ];
2020-05-19 10:40:59 +10:00
passthru.tests.podman = nixosTests.podman;
meta = with stdenv.lib; {
homepage = "https://github.com/containers/conmon";
description = "An OCI container runtime monitor";
license = licenses.asl20;
2020-04-03 20:11:24 +10:00
maintainers = with maintainers; [ ] ++ teams.podman.members;
platforms = platforms.linux;
};
}