2022-11-07T09:47:46 conmon 2.1.4 -> 2.1.5 https://repology.org/metapackage/conmon/versions 2022-11-07T09:47:49 attrpath: conmon 2022-11-07T09:47:49 Checking auto update branch... 2022-11-07T09:47:49 No auto update branch exists 2022-11-07T09:47:50 Old version 2.1.4" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , pkg-config , glib , glibc , libseccomp , systemd , nixosTests }: stdenv.mkDerivation rec { pname = "conmon"; version = "2.1.5"; src = fetchFromGitHub { owner = "containers"; repo = pname; rev = "v${version}"; sha256 = "sha256-zpZ3hVgnh8gkrSghSvhSZnG9uaN+GTKFGHv+MMcs73Q="; }; nativeBuildInputs = [ pkg-config ]; buildInputs = [ glib libseccomp systemd ] ++ lib.optionals (!stdenv.hostPlatform.isMusl) [ glibc glibc.static ]; # manpage requires building the vendored go-md2man makeFlags = [ "bin/conmon" ]; installPhase = '' runHook preInstall install -D bin/conmon -t $out/bin runHook postInstall ''; enableParallelBuilding = true; strictDeps = true; passthru.tests = { inherit (nixosTests) cri-o podman; }; meta = with 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; }; }