at 18.03-beta 595 B view raw
1{ stdenv, fetchFromGitHub, cmake, curl }: 2 3stdenv.mkDerivation rec { 4 name = "curlcpp-${version}"; 5 version = "1.0"; 6 7 src = fetchFromGitHub { 8 owner = "JosephP91"; 9 repo = "curlcpp"; 10 rev = "${version}"; 11 sha256 = "1akibhrmqsy0dlz9lq93508bhkh7r1l0aycbzy2x45a9gqxfdi4q"; 12 }; 13 14 buildInputs = [ cmake curl ]; 15 16 meta = with stdenv.lib; { 17 homepage = https://josephp91.github.io/curlcpp/; 18 description = "Object oriented C++ wrapper for CURL"; 19 platforms = platforms.unix; 20 license = licenses.mit; 21 maintainers = with maintainers; [ juliendehos rszibele ]; 22 }; 23} 24