2021-01-21 17:00:13 +00:00
|
|
|
{ lib, 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";
|
2020-07-09 19:40:22 +01:00
|
|
|
version = "2.1.12";
|
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";
|
2020-07-09 19:40:22 +01:00
|
|
|
sha256 = "1fq30imk8zd26x8066di3kpc5zyfc5z6frr3zll685zcx4dxxrlj";
|
2010-07-22 10:02:13 +01:00
|
|
|
};
|
2015-10-05 14:58:37 +01:00
|
|
|
|
2021-02-25 03:48:52 +00:00
|
|
|
preConfigure = lib.optionalString (lib.versionAtLeast stdenv.hostPlatform.darwinMinVersion "11") ''
|
|
|
|
MACOSX_DEPLOYMENT_TARGET=10.16
|
|
|
|
'';
|
|
|
|
|
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" ]
|
2021-01-21 17:00:13 +00:00
|
|
|
++ lib.optional sslSupport "openssl"
|
2017-08-20 21:34:16 +01:00
|
|
|
;
|
2015-10-05 14:58:37 +01:00
|
|
|
outputBin = "dev";
|
2017-08-20 21:34:16 +01:00
|
|
|
propagatedBuildOutputs = [ "out" ]
|
2021-01-21 17:00:13 +00:00
|
|
|
++ lib.optional sslSupport "openssl"
|
2017-08-20 21:34:16 +01:00
|
|
|
;
|
2010-07-22 10:02:13 +01:00
|
|
|
|
2020-10-26 07:17:14 +00:00
|
|
|
nativeBuildInputs = []
|
2021-01-21 17:00:13 +00:00
|
|
|
++ lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames
|
2020-10-26 07:17:14 +00:00
|
|
|
;
|
|
|
|
|
2017-08-20 21:34:16 +01:00
|
|
|
buildInputs = []
|
2021-01-21 17:00:13 +00:00
|
|
|
++ lib.optional sslSupport openssl
|
|
|
|
++ lib.optional stdenv.isCygwin findutils
|
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
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
postInstall = 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;
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with 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.
|
|
|
|
'';
|
2020-10-02 08:58:50 +01:00
|
|
|
homepage = "https://libevent.org/";
|
2015-04-20 22:44:14 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.all;
|
2006-10-08 11:31:55 +01:00
|
|
|
};
|
|
|
|
}
|