summary refs log tree commit diff
path: root/pkgs/development/libraries/nlohmann_json/default.nix
diff options
context:
space:
mode:
authorJan Malakhovski <oxij@oxij.org>2018-08-08 18:57:55 +0000
committerJan Malakhovski <oxij@oxij.org>2018-08-10 12:56:34 +0000
commit0317cc052579a4990619297811a5c1878feade62 (patch)
tree1f56f1333ba68c57d9356bdbbc59f3bf39aa7ef6 /pkgs/development/libraries/nlohmann_json/default.nix
parentee90a2d893801c35fa5d071a1905544c21edbdfe (diff)
downloadnixpkgs-0317cc052579a4990619297811a5c1878feade62.tar
nixpkgs-0317cc052579a4990619297811a5c1878feade62.tar.gz
nixpkgs-0317cc052579a4990619297811a5c1878feade62.tar.bz2
nixpkgs-0317cc052579a4990619297811a5c1878feade62.tar.lz
nixpkgs-0317cc052579a4990619297811a5c1878feade62.tar.xz
nixpkgs-0317cc052579a4990619297811a5c1878feade62.tar.zst
nixpkgs-0317cc052579a4990619297811a5c1878feade62.zip
nlohmann_json: cleanup tests
Diffstat (limited to 'pkgs/development/libraries/nlohmann_json/default.nix')
-rw-r--r--pkgs/development/libraries/nlohmann_json/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/libraries/nlohmann_json/default.nix b/pkgs/development/libraries/nlohmann_json/default.nix
index 0e9ff5d9105..8db3a3d92ff 100644
--- a/pkgs/development/libraries/nlohmann_json/default.nix
+++ b/pkgs/development/libraries/nlohmann_json/default.nix
@@ -15,9 +15,6 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ cmake ];
 
-  doCheck = stdenv.buildPlatform == stdenv.hostPlatform;
-  checkTarget = "test";
-
   enableParallelBuilding = true;
 
   cmakeFlags = [
@@ -26,6 +23,8 @@ stdenv.mkDerivation rec {
     "-DCMAKE_SYSTEM_NAME=Windows"
   ];
 
+  doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
+
   meta = with stdenv.lib; {
     description = "Header only C++ library for the JSON file format";
     homepage = https://github.com/nlohmann/json;