aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/aws-c-common/default.nix
diff options
context:
space:
mode:
authorNiklas Hambüchen <mail@nh2.me>2019-05-14 21:12:30 +0200
committerNiklas Hambüchen <mail@nh2.me>2019-05-14 21:13:18 +0200
commit46f84cac427c5d6a5f5e2d88759ae54a833eb6e7 (patch)
tree678cd8fa3e9197aa94f124e97112c438b822e5da /pkgs/development/libraries/aws-c-common/default.nix
parent828d85c1af5a8dc5b5d76786b1a44043cda59b45 (diff)
aws-c-common: 0.3.4 -> 0.3.9.
Also remove conditional adding of `libexecinfo` for musl; see #56106.
Diffstat (limited to 'pkgs/development/libraries/aws-c-common/default.nix')
-rw-r--r--pkgs/development/libraries/aws-c-common/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/development/libraries/aws-c-common/default.nix b/pkgs/development/libraries/aws-c-common/default.nix
index 5b938ddb03cf..c8f284acc135 100644
--- a/pkgs/development/libraries/aws-c-common/default.nix
+++ b/pkgs/development/libraries/aws-c-common/default.nix
@@ -2,19 +2,17 @@
stdenv.mkDerivation rec {
pname = "aws-c-common";
- version = "0.3.4";
+ version = "0.3.9";
src = fetchFromGitHub {
owner = "awslabs";
repo = pname;
rev = "v${version}";
- sha256 = "1z02ndb9jjn0p5bcc49pq0d8c0q2pq33dlszw77l76jkhrfx0921";
+ sha256 = "04wrmrw83vypqzsq88b2q8kp5sfbv0qsci3bcxw0c2mfxqk8358n";
};
nativeBuildInputs = [ cmake ];
- buildInputs = lib.optional stdenv.hostPlatform.isMusl libexecinfo;
-
NIX_CFLAGS_COMPILE = lib.optionals stdenv.isDarwin [
"-Wno-nullability-extension"
"-Wno-typedef-redefinition"