nixpkgs/pkgs/development/libraries/curlcpp/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

25 lines
594 B
Nix

{ stdenv, fetchFromGitHub, cmake, curl }:
stdenv.mkDerivation rec {
name = "curlcpp-${version}";
version = "1.0";
src = fetchFromGitHub {
owner = "JosephP91";
repo = "curlcpp";
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;
license = licenses.mit;
maintainers = with maintainers; [ juliendehos rszibele ];
};
}