2016-09-01 02:21:17 -07:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, curl }:
|
|
|
|
|
2017-04-22 08:14:33 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "curlcpp";
|
2020-06-14 05:53:38 -07:00
|
|
|
version = "1.4";
|
2016-09-01 02:21:17 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "JosephP91";
|
|
|
|
repo = "curlcpp";
|
2019-09-08 16:38:31 -07:00
|
|
|
rev = version;
|
2020-06-14 05:53:38 -07:00
|
|
|
sha256 = "1zx76jcddqk4zkcdb6p7rsmkjbbjm2cj6drj0c8hdd61ms1d0f3n";
|
2016-09-01 02:21:17 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ cmake curl ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://josephp91.github.io/curlcpp/";
|
2016-09-01 02:21:17 -07:00
|
|
|
description = "Object oriented C++ wrapper for CURL";
|
2017-04-22 08:14:33 -07:00
|
|
|
platforms = platforms.unix;
|
2016-09-01 02:21:17 -07:00
|
|
|
license = licenses.mit;
|
2020-06-18 23:42:04 -07:00
|
|
|
maintainers = with maintainers; [ rszibele ];
|
2016-09-01 02:21:17 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|