2022-12-05T06:18:12 capnproto 0.10.2 -> 0.10.3 https://repology.org/metapackage/capnproto/versions 2022-12-05T06:18:14 attrpath: capnproto 2022-12-05T06:18:14 Checking auto update branch... 2022-12-05T06:18:14 No auto update branch exists 2022-12-05T06:18:15 Old version 0.10.2" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , cmake , openssl , zlib }: stdenv.mkDerivation rec { pname = "capnproto"; version = "0.10.3"; # release tarballs are missing some ekam rules src = fetchFromGitHub { owner = "capnproto"; repo = "capnproto"; rev = "v${version}"; sha256 = "sha256-QrBSIKDwVlG8AIE/F4tnRq14xdhT05NKsBMldWzQQFo="; }; nativeBuildInputs = [ cmake ]; propagatedBuildInputs = [ openssl zlib ]; meta = with lib; { homepage = "https://capnproto.org/"; description = "Cap'n Proto cerealization protocol"; longDescription = '' Cap’n Proto is an insanely fast data interchange format and capability-based RPC system. Think JSON, except binary. Or think Protocol Buffers, except faster. ''; license = licenses.mit; platforms = platforms.all; maintainers = with maintainers; [ cstrahan ]; }; }