nixpkgs-suyu/pkgs/applications/virtualization/conmon/default.nix

42 lines
956 B
Nix
Raw Normal View History

{ stdenv
, fetchFromGitHub
, pkg-config
, glib
, glibc
, systemd
2020-05-19 02:40:59 +02:00
, nixosTests
}:
stdenv.mkDerivation rec {
pname = "conmon";
version = "2.0.22";
src = fetchFromGitHub {
owner = "containers";
repo = pname;
rev = "v${version}";
sha256 = "07wd3pns6x25dcnc1r84cwmrzg8xgzsfmidkclcpcagf97ad7jmc";
};
nativeBuildInputs = [ pkg-config ];
2020-04-19 02:14:41 +02:00
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
'';
2020-08-24 00:42:49 +02:00
passthru.tests = { inherit (nixosTests) cri-o podman; };
2020-05-19 02:40:59 +02:00
meta = with stdenv.lib; {
homepage = "https://github.com/containers/conmon";
description = "An OCI container runtime monitor";
license = licenses.asl20;
2020-04-03 12:11:24 +02:00
maintainers = with maintainers; [ ] ++ teams.podman.members;
platforms = platforms.linux;
};
}