Merge pull request #18184 from juliendehos/curlcpp

curlcpp: init at 20160901
This commit is contained in:
Joachim F 2016-09-03 16:23:48 +02:00 committed by GitHub
commit 03de0c765c
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, fetchFromGitHub, cmake, curl }:
stdenv.mkDerivation {
name = "curlcpp-20160901";
src = fetchFromGitHub {
owner = "JosephP91";
repo = "curlcpp";
rev = "98286da1d6c9f6158344a8e272eae5030cbf6c0e";
sha256 = "00nm2b8ik1yvaz5dp1b61jid841jv6zf8k5ma2nxbf1di1apqh0d";
};
buildInputs = [ cmake curl ];
meta = with stdenv.lib; {
homepage = "http://josephp91.github.io/curlcpp/";
description = "Object oriented C++ wrapper for CURL";
platforms = platforms.unix ;
license = licenses.mit;
maintainers = [ maintainers.juliendehos ];
};
}

View file

@ -7091,6 +7091,8 @@ in
cryptopp = callPackage ../development/libraries/crypto++ { };
curlcpp = callPackage ../development/libraries/curlcpp { };
cutee = callPackage ../development/libraries/cutee { };
cxxtools = callPackage ../development/libraries/cxxtools { };