libcpr: make curl a propagated build input

When using the libcpr library then built executable sometimes need to
be linked directly with curl, so make it available.
This commit is contained in:
Robert Helgesson
2023-05-17 13:35:39 +02:00
parent 05aa94f9bc
commit 2c3a5a0f2b
@@ -16,7 +16,7 @@ stdenv.mkDerivation {
nativeBuildInputs = [ cmake ];
buildInputs = [ curl ];
propagatedBuildInputs = [ curl ];
cmakeFlags = [
"-DCPR_USE_SYSTEM_CURL=ON"