conmon: 2.0.10 -> 2.0.11
https://github.com/containers/conmon/releases/tag/v2.0.11
This commit is contained in:
parent
88e23894fe
commit
f14ee5bce5
|
@ -1,31 +1,30 @@
|
||||||
{ stdenv
|
{ stdenv
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, pkgconfig
|
, pkg-config
|
||||||
, glib
|
, glib
|
||||||
, glibc
|
, glibc
|
||||||
, systemd
|
, systemd
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
project = "conmon";
|
pname = "conmon";
|
||||||
name = "${project}-${version}";
|
version = "2.0.11";
|
||||||
version = "2.0.10";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "containers";
|
owner = "containers";
|
||||||
repo = project;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "194wach3yrkvll2xaj0x77hzlngk2016mflgnd5k8knjn2b9dgvl";
|
sha256 = "1mdnfkbbv41g590a1ja4rfw69z6kp03znyhikdmg6zqp4qsv32ib";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
buildInputs = [ glib systemd ] ++
|
buildInputs = [ glib systemd ] ++
|
||||||
stdenv.lib.optionals (!stdenv.hostPlatform.isMusl) [ glibc glibc.static ];
|
stdenv.lib.optionals (!stdenv.hostPlatform.isMusl) [ glibc glibc.static ];
|
||||||
|
|
||||||
installPhase = "install -Dm755 bin/${project} $out/bin/${project}";
|
installPhase = "install -Dm755 bin/${pname} $out/bin/${pname}";
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://github.com/containers/conmon;
|
homepage = "https://github.com/containers/conmon";
|
||||||
description = "An OCI container runtime monitor";
|
description = "An OCI container runtime monitor";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ vdemeester saschagrunert ];
|
maintainers = with maintainers; [ vdemeester saschagrunert ];
|
||||||
|
|
Loading…
Reference in New Issue