2022-11-11T06:52:31 aws-c-common 0.8.4 -> 0.8.5 https://repology.org/metapackage/aws-c-common/versions 2022-11-11T06:52:33 attrpath: aws-c-common 2022-11-11T06:52:33 Checking auto update branch... 2022-11-11T06:52:33 No auto update branch exists 2022-11-11T06:52:34 Old version 0.8.4" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , cmake , nix }: stdenv.mkDerivation rec { pname = "aws-c-common"; version = "0.8.5"; src = fetchFromGitHub { owner = "awslabs"; repo = pname; rev = "v${version}"; sha256 = "sha256-kAwcVB39rcS59I2qJhYc7Xr3mXMWtKfN45jo+8BNHwA="; }; nativeBuildInputs = [ cmake ]; cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ] ++ lib.optionals stdenv.hostPlatform.isRiscV [ "-DCMAKE_C_FLAGS=-fasynchronous-unwind-tables" ]; # aws-c-common misuses cmake modules, so we need # to manually add a MODULE_PATH to its consumers setupHook = ./setup-hook.sh; # Prevent the execution of tests known to be flaky. preCheck = let ignoreTests = [ "promise_test_multiple_waiters" ] ++ lib.optionals stdenv.hostPlatform.isMusl [ "sba_metrics" # https://github.com/awslabs/aws-c-common/issues/839 ]; in '' cat <CTestCustom.cmake SET(CTEST_CUSTOM_TESTS_IGNORE ${toString ignoreTests}) EOW ''; doCheck = true; passthru.tests = { inherit nix; }; meta = with lib; { description = "AWS SDK for C common core"; homepage = "https://github.com/awslabs/aws-c-common"; license = licenses.asl20; platforms = platforms.unix; maintainers = with maintainers; [ orivej eelco r-burns ]; }; }