{ stdenv , fetchFromGitHub , pkg-config , glib , glibc , systemd , nixosTests }: stdenv.mkDerivation rec { pname = "conmon"; version = "2.0.21"; src = fetchFromGitHub { owner = "containers"; repo = pname; rev = "v${version}"; sha256 = "13g436s00bcwzs31qsx5rpgkbbyxd4zvx8mbkq10gkrsv4r04q23"; }; nativeBuildInputs = [ pkg-config ]; buildInputs = [ glib systemd ] ++ stdenv.lib.optionals (!stdenv.hostPlatform.isMusl) [ glibc glibc.static ]; installFlags = [ "PREFIX=$(out)" ]; passthru.tests = { inherit (nixosTests) cri-o podman; }; meta = with stdenv.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; }; }