2019-06-16 20:59:06 +01:00
|
|
|
{ stdenv, fetchurl, findutils, fixDarwinDylibNames
|
2017-08-20 21:34:16 +01:00
|
|
|
, sslSupport? true, openssl
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert sslSupport -> openssl != null;
|
2006-10-08 11:31:55 +01:00
|
|
|
|
2017-07-25 00:58:55 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libevent";
|
2019-09-01 03:25:41 +01:00
|
|
|
version = "2.1.11";
|
2006-10-08 11:31:55 +01:00
|
|
|
|
2015-08-21 14:28:30 +01:00
|
|
|
src = fetchurl {
|
2016-09-02 05:36:44 +01:00
|
|
|
url = "https://github.com/libevent/libevent/releases/download/release-${version}-stable/libevent-${version}-stable.tar.gz";
|
2019-09-01 03:25:41 +01:00
|
|
|
sha256 = "0g988zqm45sj1hlhhz4il5z4dpi5dl74hzjwzl4md37a09iaqnx6";
|
2010-07-22 10:02:13 +01:00
|
|
|
};
|
2015-10-05 14:58:37 +01:00
|
|
|
|
2017-02-27 17:03:34 +00:00
|
|
|
# libevent_openssl is moved into its own output, so that openssl isn't present
|
|
|
|
# in the default closure.
|
2017-08-20 21:34:16 +01:00
|
|
|
outputs = [ "out" "dev" ]
|
|
|
|
++ stdenv.lib.optional sslSupport "openssl"
|
|
|
|
;
|
2015-10-05 14:58:37 +01:00
|
|
|
outputBin = "dev";
|
2017-08-20 21:34:16 +01:00
|
|
|
propagatedBuildOutputs = [ "out" ]
|
|
|
|
++ stdenv.lib.optional sslSupport "openssl"
|
|
|
|
;
|
2010-07-22 10:02:13 +01:00
|
|
|
|
2017-08-20 21:34:16 +01:00
|
|
|
buildInputs = []
|
|
|
|
++ stdenv.lib.optional sslSupport openssl
|
|
|
|
++ stdenv.lib.optional stdenv.isCygwin findutils
|
2018-04-05 22:48:57 +01:00
|
|
|
++ stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames
|
2017-08-20 21:34:16 +01:00
|
|
|
;
|
2015-04-20 22:44:14 +01:00
|
|
|
|
2018-04-25 04:20:18 +01:00
|
|
|
doCheck = false; # needs the net
|
|
|
|
|
2017-08-20 21:34:16 +01:00
|
|
|
postInstall = stdenv.lib.optionalString sslSupport ''
|
2017-02-27 17:03:34 +00:00
|
|
|
moveToOutput "lib/libevent_openssl*" "$openssl"
|
|
|
|
substituteInPlace "$dev/lib/pkgconfig/libevent_openssl.pc" \
|
|
|
|
--replace "$out" "$openssl"
|
|
|
|
sed "/^libdir=/s|$out|$openssl|" -i "$openssl"/lib/libevent_openssl.la
|
|
|
|
'';
|
|
|
|
|
2018-06-04 10:50:02 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-04-20 22:44:14 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Event notification library";
|
2016-09-02 05:36:44 +01:00
|
|
|
longDescription = ''
|
|
|
|
The libevent API provides a mechanism to execute a callback function
|
|
|
|
when a specific event occurs on a file descriptor or after a timeout
|
|
|
|
has been reached. Furthermore, libevent also support callbacks due
|
|
|
|
to signals or regular timeouts.
|
|
|
|
|
|
|
|
libevent is meant to replace the event loop found in event driven
|
|
|
|
network servers. An application just needs to call event_dispatch()
|
|
|
|
and then add or remove events dynamically without having to change
|
|
|
|
the event loop.
|
|
|
|
'';
|
|
|
|
homepage = http://libevent.org/;
|
2015-04-20 22:44:14 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.all;
|
2006-10-08 11:31:55 +01:00
|
|
|
};
|
|
|
|
}
|