Skip to content

Commit

Permalink
curlcpp: 20160901 -> 1.0 (#25104)
Browse files Browse the repository at this point in the history
  • Loading branch information
rszibele authored and joachifm committed Apr 22, 2017
1 parent b72d4e1 commit 5f9096a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lib/maintainers.nix
Expand Up @@ -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>";
Expand Down
13 changes: 7 additions & 6 deletions pkgs/development/libraries/curlcpp/default.nix
@@ -1,23 +1,24 @@
{ 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 ];

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

0 comments on commit 5f9096a

Please sign in to comment.