2015-03-24 19:44:00 +01:00
|
|
|
{ stdenv, fetchurl }:
|
2009-08-27 09:17:57 +02:00
|
|
|
|
2015-03-24 19:44:00 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libev-${version}";
|
2018-12-25 19:16:02 +01:00
|
|
|
version="4.25";
|
2015-10-05 20:05:56 +02:00
|
|
|
|
2015-03-24 19:44:00 +01:00
|
|
|
src = fetchurl {
|
2015-06-26 18:53:10 +02:00
|
|
|
url = "http://dist.schmorp.de/libev/Attic/${name}.tar.gz";
|
2018-12-25 19:16:02 +01:00
|
|
|
sha256 = "1295q0lkkbrlpd5dl5i48bh1rm8mjzh9y795jlvjz3bp4wf7wxbq";
|
2015-03-24 19:44:00 +01:00
|
|
|
};
|
2015-05-14 21:12:04 +02:00
|
|
|
|
2009-08-27 09:17:57 +02:00
|
|
|
meta = {
|
2015-03-24 23:45:49 +01:00
|
|
|
description = "A high-performance event loop/event model with lots of features";
|
|
|
|
maintainers = [ stdenv.lib.maintainers.raskin ];
|
2015-03-24 19:44:00 +01:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2015-03-24 23:45:49 +01:00
|
|
|
license = stdenv.lib.licenses.bsd2; # or GPL2+
|
2009-08-27 09:17:57 +02:00
|
|
|
};
|
|
|
|
}
|