2015-03-24 18:44:00 +00:00
|
|
|
{ stdenv, fetchurl }:
|
2009-08-27 08:17:57 +01:00
|
|
|
|
2015-03-24 18:44:00 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libev-${version}";
|
|
|
|
version="4.15";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://dist.schmorp.de/libev/Attic/${name}.tar.gz";
|
|
|
|
sha256 = "1svgc1hq4i5zsw4i02sf7xb4pk2d8kpvc1gdrd856vsmffh47pdj";
|
|
|
|
};
|
2009-08-27 08:17:57 +01:00
|
|
|
meta = {
|
2015-03-24 22:45:49 +00:00
|
|
|
description = "A high-performance event loop/event model with lots of features";
|
|
|
|
maintainers = [ stdenv.lib.maintainers.raskin ];
|
2015-03-24 18:44:00 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2015-03-24 22:45:49 +00:00
|
|
|
license = stdenv.lib.licenses.bsd2; # or GPL2+
|
2009-08-27 08:17:57 +01:00
|
|
|
};
|
|
|
|
}
|