2022-12-12T06:24:14 aws-c-mqtt 0.8.0 -> 0.8.1 https://repology.org/metapackage/aws-c-mqtt/versions 2022-12-12T06:24:16 attrpath: aws-c-mqtt 2022-12-12T06:24:16 Checking auto update branch... 2022-12-12T06:24:16 No auto update branch exists 2022-12-12T06:24:17 Old version 0.8.0" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , aws-c-cal , aws-c-common , aws-c-compression , aws-c-http , aws-c-io , cmake , nix , s2n-tls }: stdenv.mkDerivation rec { pname = "aws-c-mqtt"; version = "0.8.1"; src = fetchFromGitHub { owner = "awslabs"; repo = "aws-c-mqtt"; rev = "v${version}"; sha256 = "sha256-nmSNG5o2Ck80OG4ZGYIayVdnw3Z2fn1VkUIuI9RYfL8="; }; nativeBuildInputs = [ cmake ]; buildInputs = [ aws-c-cal aws-c-common aws-c-compression aws-c-http aws-c-io s2n-tls ]; cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ]; passthru.tests = { inherit nix; }; meta = with lib; { description = "C99 implementation of the MQTT 3.1.1 specification"; homepage = "https://github.com/awslabs/aws-c-mqtt"; license = licenses.asl20; platforms = platforms.unix; maintainers = with maintainers; [ r-burns ]; }; }