Merge pull request #280652 from eclairevoyant/cpp-jwt-strict

cpp-jwt: fix build with `strictDeps = true;`
This commit is contained in:
Franz Pletz
2024-01-13 14:21:22 +01:00
committed by GitHub
@@ -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";