aws-c-compression 0.2.16 -> 0.2.17 https://repology.org/project/aws-c-compression/versions attrpath: aws-c-compression Checking auto update branch... No auto update branch exists Old version 0.2.16" not present in staging derivation file with contents: { lib, stdenv , fetchFromGitHub , aws-c-common , cmake , nix }: stdenv.mkDerivation rec { pname = "aws-c-compression"; version = "0.2.17"; src = fetchFromGitHub { owner = "awslabs"; repo = "aws-c-compression"; rev = "v${version}"; sha256 = "sha256-XtmSThfz4Cu7CygYrLNQifDCQ6l/c/0OR0lX+OxCYJM="; }; 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 ]; }; }