mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 07:04:28 +00:00
fb3df59c6b
Fixes #56106
31 lines
773 B
Nix
31 lines
773 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, libexecinfo }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "aws-c-common";
|
|
version = "0.3.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "awslabs";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0wfqs77plb37gp586a0pclxjlpsjvq44991am8p2g5j46zfz6pdx";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = lib.optional stdenv.hostPlatform.isMusl libexecinfo;
|
|
|
|
NIX_CFLAGS_COMPILE = lib.optionals stdenv.isDarwin [
|
|
"-Wno-nullability-extension"
|
|
"-Wno-typedef-redefinition"
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|