summary refs log blame commit diff
path: root/pkgs/development/libraries/curlcpp/default.nix
blob: 6f531414242702738d82c9d1b5b19cf3096b79fd (plain) (tree)
1
2
3
4
5
6
7
8
9

                                          
                         
                    
                  



                         
                  
                                                                    




                               
                                                    
                                                         
                               
                           
                                                             


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