curlcpp: 20160901 -> 1.0 (#25104)

This commit is contained in:
Richard Szibele 2017-04-22 17:14:33 +02:00 committed by Joachim F
parent b72d4e13c7
commit 5f9096a033
2 changed files with 8 additions and 7 deletions

View file

@ -452,7 +452,7 @@
romildo = "José Romildo Malaquias <malaquias@gmail.com>";
rongcuid = "Rongcui Dong <rongcuid@outlook.com>";
ronny = "Ronny Pfannschmidt <nixos@ronnypfannschmidt.de>";
rszibele = "Richard Szibele <richard_szibele@hotmail.com>";
rszibele = "Richard Szibele <richard@szibele.com>";
rtreffer = "Rene Treffer <treffer+nixos@measite.de>";
rushmorem = "Rushmore Mushambi <rushmore@webenchanter.com>";
rvl = "Rodney Lorrimar <dev+nix@rodney.id.au>";

View file

@ -1,13 +1,14 @@
{ stdenv, fetchFromGitHub, cmake, curl }:
stdenv.mkDerivation {
name = "curlcpp-20160901";
stdenv.mkDerivation rec {
name = "curlcpp-${version}";
version = "1.0";
src = fetchFromGitHub {
owner = "JosephP91";
repo = "curlcpp";
rev = "98286da1d6c9f6158344a8e272eae5030cbf6c0e";
sha256 = "00nm2b8ik1yvaz5dp1b61jid841jv6zf8k5ma2nxbf1di1apqh0d";
rev = "${version}";
sha256 = "1akibhrmqsy0dlz9lq93508bhkh7r1l0aycbzy2x45a9gqxfdi4q";
};
buildInputs = [ cmake curl ];
@ -15,9 +16,9 @@ stdenv.mkDerivation {
meta = with stdenv.lib; {
homepage = "http://josephp91.github.io/curlcpp/";
description = "Object oriented C++ wrapper for CURL";
platforms = platforms.unix ;
platforms = platforms.unix;
license = licenses.mit;
maintainers = [ maintainers.juliendehos ];
maintainers = with maintainers; [ juliendehos rszibele ];
};
}