about summary refs log tree commit diff
path: root/pkgs/development/libraries/curlcpp/default.nix
blob: 9f2710f42a46555d96467e9b48169c524f99542d (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.4";

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

  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 ];
  };
}