From b667abc699c7d63e0a6e2beba6daae57f05ddab4 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Sun, 5 Mar 2017 07:39:10 -0500 Subject: [PATCH] Add signing and s3 support on darwin --- release.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release.nix b/release.nix index 78f961963..e61e81bdf 100644 --- a/release.nix +++ b/release.nix @@ -74,8 +74,8 @@ let buildInputs = [ curl perl bzip2 xz openssl pkgconfig sqlite boehmgc ] - ++ lib.optional stdenv.isLinux libsodium - ++ lib.optional stdenv.isLinux + ++ lib.optional (stdenv.isLinux || stdenv.isDarwin) libsodium + ++ lib.optional (stdenv.isLinux || stdenv.isDarwin) (aws-sdk-cpp.override { apis = ["s3"]; customMemoryManagement = false;