2020-01-06 22:16:11 -08:00
|
|
|
{ stdenv, fetchurl, static ? false }:
|
2009-08-27 00:17:57 -07:00
|
|
|
|
2020-06-26 13:44:45 -07:00
|
|
|
# Note: this package is used for bootstrapping fetchurl, and thus
|
|
|
|
# cannot use fetchpatch! All mutable patches (generated by GitHub or
|
|
|
|
# cgit) that are needed here should be included directly in Nixpkgs as
|
|
|
|
# files.
|
|
|
|
|
2015-03-24 11:44:00 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "libev";
|
2020-03-22 10:57:47 -07:00
|
|
|
version="4.33";
|
2015-10-05 11:05:56 -07:00
|
|
|
|
2015-03-24 11:44:00 -07:00
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "http://dist.schmorp.de/libev/Attic/${pname}-${version}.tar.gz";
|
2020-03-22 10:57:47 -07:00
|
|
|
sha256 = "1sjs4324is7fp21an4aas2z4dwsvs6z4xwrmp72vwpq1s6wbfzjh";
|
2015-03-24 11:44:00 -07:00
|
|
|
};
|
2015-05-14 12:12:04 -07:00
|
|
|
|
2020-01-06 22:16:11 -08:00
|
|
|
configureFlags = stdenv.lib.optional (static) "LDFLAGS=-static";
|
|
|
|
|
2009-08-27 00:17:57 -07:00
|
|
|
meta = {
|
2015-03-24 15:45:49 -07:00
|
|
|
description = "A high-performance event loop/event model with lots of features";
|
|
|
|
maintainers = [ stdenv.lib.maintainers.raskin ];
|
2015-03-24 11:44:00 -07:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2015-03-24 15:45:49 -07:00
|
|
|
license = stdenv.lib.licenses.bsd2; # or GPL2+
|
2009-08-27 00:17:57 -07:00
|
|
|
};
|
|
|
|
}
|