1 { lib, stdenv, fetchFromGitHub, cmake, curl }:
3 stdenv.mkDerivation rec {
6 src = fetchFromGitHub {
10 sha256 = "1b0ylnnrhdax4kwjq64r1fk0i24n5ss6zfzf4hxwgslny01xiwrk";
14 # https://github.com/jpbarrette/curlpp/pull/171
15 ./curl_8_10_build_failure.patch
18 buildInputs = [ curl ];
19 nativeBuildInputs = [ cmake ];
22 homepage = "https://www.curlpp.org/";
23 description = "C++ wrapper around libcURL";
24 mainProgram = "curlpp-config";
25 license = licenses.mit;
26 maintainers = with maintainers; [ CrazedProgrammer ];