2022-11-12T11:40:34 libnats-c 3.4.1 -> 3.5.0 https://github.com/nats-io/nats.c/releases 2022-11-12T11:40:38 attrpath: libnats-c 2022-11-12T11:40:38 Checking auto update branch... 2022-11-12T11:40:38 No auto update branch exists 2022-11-12T11:40:39 Old version 3.4.1" not present in master derivation file with contents: { lib, stdenv, fetchFromGitHub , cmake, protobuf, protobufc , libsodium, openssl }: stdenv.mkDerivation rec { pname = "libnats"; version = "3.5.0"; src = fetchFromGitHub { owner = "nats-io"; repo = "nats.c"; rev = "v${version}"; sha256 = "sha256-mdOvJkCdJ2QEsVUdxVCpIDLn4+6JM6OeJfasJxqqID8="; }; nativeBuildInputs = [ cmake ]; buildInputs = [ libsodium openssl protobuf protobufc ]; separateDebugInfo = true; outputs = [ "out" "dev" ]; # https://github.com/nats-io/nats.c/issues/542 postPatch = '' substituteInPlace src/libnats.pc.in \ --replace '$'{prefix}/@CMAKE_INSTALL_LIBDIR@ @CMAKE_INSTALL_FULL_LIBDIR@ ''; meta = with lib; { description = "C API for the NATS messaging system"; homepage = "https://github.com/nats-io/nats.c"; license = licenses.asl20; platforms = platforms.unix; maintainers = with maintainers; [ thoughtpolice ]; }; }