about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/curlcpp/default.nix
blob: a2188f687d1360d58a9ab26be65d4f9d684b3f54 (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.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 ];
  };
}