3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/aws-c-common/default.nix

43 lines
889 B
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, cmake
2021-08-18 18:11:52 +01:00
, coreutils
}:
2019-02-14 09:07:53 +00:00
stdenv.mkDerivation rec {
pname = "aws-c-common";
2021-08-14 01:54:44 +01:00
version = "0.6.9";
2019-02-14 09:07:53 +00:00
src = fetchFromGitHub {
owner = "awslabs";
repo = pname;
rev = "v${version}";
2021-08-14 01:54:44 +01:00
sha256 = "sha256-bnKIL51AW+0T87BxEazXDZElYqiwOUHQVEDKOCUzsbM=";
2019-02-14 09:07:53 +00:00
};
nativeBuildInputs = [ cmake ];
cmakeFlags = [
"-DBUILD_SHARED_LIBS=ON"
"-DCMAKE_SKIP_BUILD_RPATH=OFF" # for tests
];
2021-08-18 18:11:52 +01:00
# Prevent the execution of tests known to be flaky.
preCheck = ''
cat <<EOW >CTestCustom.cmake
SET(CTEST_CUSTOM_TESTS_IGNORE promise_test_multiple_waiters)
EOW
'';
doCheck = true;
2019-02-14 09:07:53 +00:00
meta = with lib; {
description = "AWS SDK for C common core";
homepage = "https://github.com/awslabs/aws-c-common";
2019-02-14 09:07:53 +00:00
license = licenses.asl20;
platforms = platforms.unix;
maintainers = with maintainers; [ orivej eelco r-burns ];
2019-02-14 09:07:53 +00:00
};
}