From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36786) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fNH7C-0005b1-M7 for guix-patches@gnu.org; Mon, 28 May 2018 08:19:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fNH77-0006ra-SY for guix-patches@gnu.org; Mon, 28 May 2018 08:19:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:43852) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fNH77-0006rA-Pu for guix-patches@gnu.org; Mon, 28 May 2018 08:19:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fNH77-0005mR-Hp for guix-patches@gnu.org; Mon, 28 May 2018 08:19:01 -0400 Subject: [bug#31430] [PATCH 4/6] gnu: Add json-modern-cxx. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: Date: Mon, 28 May 2018 14:18:28 +0200 In-Reply-To: (Fis Trivial's message of "Mon, 28 May 2018 08:11:23 +0000") Message-ID: <871sdw2ctn.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Fis Trivial Cc: 31430@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Fis Trivial skribis: > * gnu/packages/cpp.scm (json-modern-cxx): New variable. Applied with the changes below (=E2=80=98clang-runtime=E2=80=99 is not need= ed AFAICS.) Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 80b491119..4831ab035 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -228,13 +228,13 @@ as ordering relation.") (string-append "#include "))))))))) (native-inputs - `(("amalgamate" ,amalgamate) - ("catch2" ,catch-framework2) - ("clang-runtime" ,clang-runtime) + `(("amalgamate" ,amalgamate))) + (inputs + `(("catch2" ,catch-framework2) ("fifo-map" ,fifo-map))) (home-page "https://github.com/nlohmann/json") (build-system cmake-build-system) (synopsis "JSON parser and printer library for C++") - (description "JSON for Modern C++ is a C++ json library that provides + (description "JSON for Modern C++ is a C++ JSON library that provides intutive syntax and trivial integration.") (license license:expat))) --=-=-=--