libevhtp: remove, abandoned and build fail

No reverse dependencies in nixpkgs. The author deleted the repository.

Is was added for certificate-transparency but isn't used in that expression
anymore.
This commit is contained in:
Franz Pletz 2017-07-31 21:05:44 +02:00 committed by Robin Gloster
parent e10e0c4707
commit d8284f5ea6
No known key found for this signature in database
GPG Key ID: 5E4C836C632C2882
2 changed files with 0 additions and 27 deletions

View File

@ -1,25 +0,0 @@
{ 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;
};
}

View File

@ -2964,8 +2964,6 @@ with pkgs;
libevdev = callPackage ../development/libraries/libevdev { };
libevhtp = callPackage ../development/libraries/libevhtp { };
libfann = callPackage ../development/libraries/libfann { };
libircclient = callPackage ../development/libraries/libircclient { };