nixpkgs/pkgs/development/libraries/curlcpp/default.nix
R. RyanTM 119a3ab3da curlcpp: 1.0 -> 1.1
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/curlcpp/versions.
2018-07-13 04:02:58 -07:00

25 lines
595 B
Nix

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