mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 22:32:58 +03:00
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:
parent
e10e0c4707
commit
d8284f5ea6
@ -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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user