core/pkgs/by-name/aw/aws-c-common/default.nix

63 lines
1.3 KiB
Nix
Raw Normal View History

2024-06-30 08:16:52 +00:00
{
lib,
stdenv,
fetchFromGitHub,
cmake,
nix,
2024-05-02 00:46:19 +00:00
}:
stdenv.mkDerivation rec {
pname = "aws-c-common";
version = "0.9.14";
src = fetchFromGitHub {
owner = "awslabs";
repo = pname;
rev = "v${version}";
hash = "sha256-aeuIXqnO8divpguDpiPlYJHABYIqegpaDNGwqJ5TKZw=";
};
nativeBuildInputs = [ cmake ];
cmakeFlags = [
"-DBUILD_SHARED_LIBS=ON"
2024-06-30 08:16:52 +00:00
] ++ lib.optionals stdenv.hostPlatform.isRiscV [ "-DCMAKE_C_FLAGS=-fasynchronous-unwind-tables" ];
2024-05-02 00:46:19 +00:00
# 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.
2024-06-30 08:16:52 +00:00
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 <<EOW >CTestCustom.cmake
SET(CTEST_CUSTOM_TESTS_IGNORE ${toString ignoreTests})
EOW
'';
2024-05-02 00:46:19 +00:00
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;
2024-06-30 08:16:52 +00:00
maintainers = with maintainers; [
orivej
eelco
r-burns
];
2024-05-02 00:46:19 +00:00
};
}