diff --git a/nix/dev-shell.nix b/nix/dev-shell.nix --- a/nix/dev-shell.nix +++ b/nix/dev-shell.nix @@ -3,14 +3,18 @@ , lib , amqp-cpp , arcanist +, boost , cargo , cmake , cryptopp , darwin +, folly +, fmt , grpc , libiconv , libuv , nodejs-16_x +, openssl , pkg-config , protobuf_3_15_cmake , python2 @@ -54,6 +58,11 @@ # include any libraries buildInputs buildInputs = [ protobuf_3_15_cmake # exposes both a library and a command, thus should appear in both inputs + folly # cpp tools + fmt # needed for folly + boost # needed for folly + ] ++ lib.optionals stdenv.isLinux [ + openssl ] ++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ CoreFoundation CoreServices