2022-11-14T06:56:55 aws-c-compression 0.2.15 -> 0.2.16 https://repology.org/metapackage/aws-c-compression/versions 2022-11-14T06:57:03 attrpath: aws-c-compression 2022-11-14T06:57:03 Checking auto update branch... 2022-11-14T06:57:03 No auto update branch exists 2022-11-14T06:57:04 Old version 0.2.15" not present in master derivation file with contents: { lib, stdenv , fetchFromGitHub , aws-c-common , cmake , nix }: stdenv.mkDerivation rec { pname = "aws-c-compression"; version = "0.2.16"; src = fetchFromGitHub { owner = "awslabs"; repo = "aws-c-compression"; rev = "v${version}"; sha256 = "sha256-aQ5UsMms8aJh5yrE9of1AQgIGTAk9vyBRaybwYqUY68="; }; nativeBuildInputs = [ cmake ]; buildInputs = [ aws-c-common ]; cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ]; passthru.tests = { inherit nix; }; meta = with lib; { description = "C99 implementation of huffman encoding/decoding"; homepage = "https://github.com/awslabs/aws-c-compression"; license = licenses.asl20; platforms = platforms.unix; maintainers = with maintainers; [ r-burns ]; }; }