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