cpp-jwt: fix build with strictDeps = true;

This commit is contained in:
éclairevoyant
2024-01-12 22:34:23 -05:00
parent 0032a648ec
commit 1aacf47e18
@@ -19,12 +19,14 @@ stdenv.mkDerivation rec {
"-DCPP_JWT_BUILD_EXAMPLES=OFF"
];
nativeBuildInputs = [ cmake gtest ];
nativeBuildInputs = [ cmake ];
buildInputs = [ openssl nlohmann_json ];
buildInputs = [ gtest openssl nlohmann_json ];
doCheck = true;
strictDeps = true;
meta = {
description = "JSON Web Token library for C++";
homepage = "https://github.com/arun11299/cpp-jwt";