summary refs log tree commit diff
path: root/pkgs/development/libraries/nlohmann_json
diff options
context:
space:
mode:
authorJosef Kemetmueller <josef.kemetmueller@aon.at>2016-08-04 23:34:23 +0200
committerJosef Kemetmueller <josef.kemetmueller@aon.at>2016-08-04 23:34:23 +0200
commit54748c1e3ff3a3948e5edeb61d0060cfba9ab1b8 (patch)
tree3c7fe4598d0bb7887ac9bf6c2ab1675a5f8f71de /pkgs/development/libraries/nlohmann_json
parent2ea72fa9c811622bdbf93e866cd68db756d45986 (diff)
downloadnixpkgs-54748c1e3ff3a3948e5edeb61d0060cfba9ab1b8.tar
nixpkgs-54748c1e3ff3a3948e5edeb61d0060cfba9ab1b8.tar.gz
nixpkgs-54748c1e3ff3a3948e5edeb61d0060cfba9ab1b8.tar.bz2
nixpkgs-54748c1e3ff3a3948e5edeb61d0060cfba9ab1b8.tar.lz
nixpkgs-54748c1e3ff3a3948e5edeb61d0060cfba9ab1b8.tar.xz
nixpkgs-54748c1e3ff3a3948e5edeb61d0060cfba9ab1b8.tar.zst
nixpkgs-54748c1e3ff3a3948e5edeb61d0060cfba9ab1b8.zip
nlohmann_json: init at 2.0.2
A header only C++ library for modern JSON.
Diffstat (limited to 'pkgs/development/libraries/nlohmann_json')
-rw-r--r--pkgs/development/libraries/nlohmann_json/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/libraries/nlohmann_json/default.nix b/pkgs/development/libraries/nlohmann_json/default.nix
new file mode 100644
index 00000000000..819160a8d7c
--- /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;
+  };
+}