1 { lib, stdenv, fetchFromGitHub, cmake, curl }:
3 stdenv.mkDerivation rec {
6 src = fetchFromGitHub {
10 sha256 = "1b0ylnnrhdax4kwjq64r1fk0i24n5ss6zfzf4hxwgslny01xiwrk";
13 buildInputs = [ curl ];
14 nativeBuildInputs = [ cmake ];
17 homepage = "https://www.curlpp.org/";
18 description = "C++ wrapper around libcURL";
19 license = licenses.mit;
20 maintainers = with maintainers; [ CrazedProgrammer ];