nixpkgs-suyu/pkgs/development/libraries/libevhtp/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
642 B
Nix

{ stdenv, fetchFromGitHub, cmake, openssl, libevent }:
stdenv.mkDerivation rec {
name = "libevhtp-${version}";
version = "1.2.11";
src = fetchFromGitHub {
owner = "ellzey";
repo = "libevhtp";
rev = version;
sha256 = "1rlxdp8w4alcy5ryr7pmw5wi6hv7d64885wwbk1zxhvi64s4x4rg";
};
buildInputs = [ cmake openssl libevent ];
buildPhase = "cmake";
meta = with stdenv.lib; {
description = "A more flexible replacement for libevent's httpd API";
homepage = https://github.com/ellzey/libevhtp;
license = licenses.bsd3;
maintainers = with maintainers; [ edwtjo ];
platforms = platforms.linux;
};
}