aws-c-sdkutils 0.1.12 -> 0.1.15 https://repology.org/project/aws-c-sdkutils/versions attrpath: aws-c-sdkutils Checking auto update branch... No auto update branch exists Old version 0.1.12" not present in staging derivation file with contents: { lib, stdenv , fetchFromGitHub , aws-c-common , cmake , nix }: stdenv.mkDerivation rec { pname = "aws-c-sdkutils"; version = "0.1.15"; src = fetchFromGitHub { owner = "awslabs"; repo = "aws-c-sdkutils"; rev = "v${version}"; hash = "sha256-RTRDbdv+QmRG0Sk/R9qhl45WYEVyl+M0EceLFsoONTI="; }; nativeBuildInputs = [ cmake ]; buildInputs = [ aws-c-common ]; cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ]; doCheck = true; passthru.tests = { inherit nix; }; meta = with lib; { description = "AWS SDK utility library"; homepage = "https://github.com/awslabs/aws-c-sdkutils"; license = licenses.asl20; platforms = platforms.unix; maintainers = with maintainers; [ r-burns ]; }; }