conmon: 2.0.21 -> 2.0.22
https://github.com/containers/conmon/releases/tag/v2.0.22
This commit is contained in:
parent
a55a89cdfd
commit
70bcf62c05
@ -9,20 +9,25 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "conmon";
|
pname = "conmon";
|
||||||
version = "2.0.21";
|
version = "2.0.22";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "containers";
|
owner = "containers";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "13g436s00bcwzs31qsx5rpgkbbyxd4zvx8mbkq10gkrsv4r04q23";
|
sha256 = "07wd3pns6x25dcnc1r84cwmrzg8xgzsfmidkclcpcagf97ad7jmc";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
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 ];
|
||||||
|
|
||||||
installFlags = [ "PREFIX=$(out)" ];
|
# manpage requires building the vendored go-md2man
|
||||||
|
makeFlags = [ "bin/conmon" ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
install -D bin/conmon -t $out/bin
|
||||||
|
'';
|
||||||
|
|
||||||
passthru.tests = { inherit (nixosTests) cri-o podman; };
|
passthru.tests = { inherit (nixosTests) cri-o podman; };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user