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

37 lines
838 B
Nix
Raw Normal View History

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