summary refs log tree commit diff
path: root/pkgs/development/libraries/curlcpp/default.nix
blob: c1579b71748440999a251c7da627703836427d7b (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 {
  name = "curlcpp-${version}";
  version = "1.0";

  src = fetchFromGitHub {
    owner = "JosephP91";
    repo = "curlcpp";
    rev = "${version}";
    sha256 = "1akibhrmqsy0dlz9lq93508bhkh7r1l0aycbzy2x45a9gqxfdi4q";
  };

  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 = with maintainers; [ juliendehos rszibele ];
  };
}