From 54748c1e3ff3a3948e5edeb61d0060cfba9ab1b8 Mon Sep 17 00:00:00 2001 From: Josef Kemetmueller Date: Thu, 4 Aug 2016 23:34:23 +0200 Subject: [PATCH] nlohmann_json: init at 2.0.2 A header only C++ library for modern JSON. --- .../libraries/nlohmann_json/default.nix | 25 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 27 insertions(+) create mode 100644 pkgs/development/libraries/nlohmann_json/default.nix diff --git a/pkgs/development/libraries/nlohmann_json/default.nix b/pkgs/development/libraries/nlohmann_json/default.nix new file mode 100644 index 000000000000..819160a8d7c8 --- /dev/null +++ b/pkgs/development/libraries/nlohmann_json/default.nix @@ -0,0 +1,25 @@ +{ stdenv, fetchFromGitHub, cmake }: + +stdenv.mkDerivation rec { + name = "nlohmann_json-${version}"; + version = "2.0.2"; + + src = fetchFromGitHub { + owner = "nlohmann"; + repo = "json"; + rev = "v${version}"; + sha256 = "10sk8d23vh0c7b3qafjz2n8r5jv8vc275bl069ikhqnx1zxv6hwp"; + }; + + buildInputs = [ cmake ]; + + doCheck = true; + checkTarget = "test"; + + meta = with stdenv.lib; { + description = "Header only C++ library for the JSON file format"; + homepage = https://github.com/nlohmann/json; + license = licenses.mit; + platforms = platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 747a53ddcc0b..f8f88c01af5f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8829,6 +8829,8 @@ in nix = pkgs.nixUnstable; }; + nlohmann_json = callPackage ../development/libraries/nlohmann_json { }; + nntp-proxy = callPackage ../applications/networking/nntp-proxy { }; non = callPackage ../applications/audio/non { };