aws-c-auth 0.6.22 -> 0.6.26 https://repology.org/project/aws-c-auth/versions attrpath: aws-c-auth Checking auto update branch... No auto update branch exists Old version 0.6.22" 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 , aws-c-sdkutils , cmake , nix , s2n-tls }: stdenv.mkDerivation rec { pname = "aws-c-auth"; version = "0.6.26"; src = fetchFromGitHub { owner = "awslabs"; repo = "aws-c-auth"; rev = "v${version}"; sha256 = "sha256-PvdkTw5JydJT0TbXLB2C9tk4T+ho+fAbaw4jU9m5KuU="; }; 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 ]; }; }