2015-11-10 07:20:20 +00:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, openssl, python, findutils }:
|
2006-10-08 11:31:55 +01:00
|
|
|
|
2015-04-20 22:44:14 +01:00
|
|
|
let version = "2.0.22"; in
|
2006-10-08 11:31:55 +01:00
|
|
|
stdenv.mkDerivation {
|
2010-07-22 10:02:13 +01:00
|
|
|
name = "libevent-${version}";
|
2006-10-08 11:31:55 +01:00
|
|
|
|
2015-08-21 14:28:30 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/levent/libevent-${version}-stable.tar.gz";
|
|
|
|
sha256 = "18qz9qfwrkakmazdlwxvjmw8p76g70n3faikwvdwznns1agw9hki";
|
2010-07-22 10:02:13 +01:00
|
|
|
};
|
|
|
|
|
2015-04-20 22:44:14 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2015-11-10 07:20:20 +00:00
|
|
|
buildInputs = [ openssl python ] ++ stdenv.lib.optional stdenv.isCygwin findutils;
|
2015-04-20 22:44:14 +01:00
|
|
|
|
2014-05-07 21:33:34 +01:00
|
|
|
patchPhase = ''
|
2015-04-20 22:44:14 +01:00
|
|
|
patchShebangs event_rpcgen.py
|
2014-05-07 21:33:34 +01:00
|
|
|
'';
|
|
|
|
|
2015-04-20 22:44:14 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Event notification library";
|
2010-07-22 10:02:13 +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.
|
|
|
|
'';
|
|
|
|
|
2015-04-20 22:44:14 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
2006-10-08 11:31:55 +01:00
|
|
|
};
|
|
|
|
}
|