aws-c-mqtt 0.8.14 -> 0.9.10 https://repology.org/project/aws-c-mqtt/versions attrpath: aws-c-mqtt Checking auto update branch... An auto update branch exists with message `aws-c-mqtt: 0.8.14 -> 0.9.9`. New version is 0.9.10. The auto update branch does not match or exceed the new version. Old version 0.8.14" not present in staging 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.9.10"; src = fetchFromGitHub { owner = "awslabs"; repo = "aws-c-mqtt"; rev = "v${version}"; sha256 = "sha256-hxisqBUARJLtmZniXaZ2th0hqWiKn4XQIy6I0Oz/kUs="; }; 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 ]; }; }