aws-c-auth 0.7.0 -> 0.7.8 https://repology.org/project/aws-c-auth/versions attrpath: aws-c-auth Checking auto update branch... No auto update branch exists Old version 0.7.0" 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 , aws-c-sdkutils , cmake , nix , s2n-tls }: stdenv.mkDerivation rec { pname = "aws-c-auth"; version = "0.7.7"; src = fetchFromGitHub { owner = "awslabs"; repo = "aws-c-auth"; rev = "v${version}"; sha256 = "sha256-GO3Sfbi1dwsqQM6rlnEHyE7wolQjdVwD5BAu5ychEuY="; }; nativeBuildInputs = [ cmake ]; buildInputs = [ aws-c-cal aws-c-common aws-c-compression aws-c-http aws-c-io s2n-tls ]; propagatedBuildInputs = [ aws-c-sdkutils ]; cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ]; passthru.tests = { inherit nix; }; meta = with lib; { description = "C99 library implementation of AWS client-side authentication"; homepage = "https://github.com/awslabs/aws-c-auth"; license = licenses.asl20; platforms = platforms.unix; maintainers = with maintainers; [ r-burns ]; }; }