about summary refs log tree commit diff
path: root/pkgs/development/libraries/curlcpp/default.nix
blob: 274a657cb1af8f9c094733b5ee95e7d970718b95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchFromGitHub, cmake, curl }: 

stdenv.mkDerivation rec {
  pname = "curlcpp";
  version = "1.1";

  src = fetchFromGitHub {
    owner = "JosephP91";
    repo = "curlcpp";
    rev = version;
    sha256 = "025qg5hym73xrvyhalv3jgbf9jqnnzkdjs3zwsgbpqx58zyd5bg5";
  };

  buildInputs = [ cmake curl ];

  meta = with stdenv.lib; {
    homepage = "https://josephp91.github.io/curlcpp/";
    description = "Object oriented C++ wrapper for CURL";
    platforms = platforms.unix;
    license = licenses.mit;
    maintainers = with maintainers; [ juliendehos rszibele ];
  };
}