mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
curlcpp: init at 20160901
This commit is contained in:
parent
85546fb342
commit
1823137f43
2 changed files with 25 additions and 0 deletions
23
pkgs/development/libraries/curlcpp/default.nix
Normal file
23
pkgs/development/libraries/curlcpp/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
|
|
@ -7064,6 +7064,8 @@ in
|
|||
|
||||
cryptopp = callPackage ../development/libraries/crypto++ { };
|
||||
|
||||
curlcpp = callPackage ../development/libraries/curlcpp { };
|
||||
|
||||
cutee = callPackage ../development/libraries/cutee { };
|
||||
|
||||
cxxtools = callPackage ../development/libraries/cxxtools { };
|
||||
|
|
Loading…
Reference in a new issue