2021-02-05 17:12:51 +00:00
|
|
|
|
{ lib, stdenv, fetchurl
|
2021-01-05 17:05:55 +00:00
|
|
|
|
, # Note: -static hasn’t work on darwin
|
|
|
|
|
static ? with stdenv.hostPlatform; isStatic && !isDarwin
|
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2020-08-20 17:08:02 +00: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.
|
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
pname = "libev";
|
|
|
|
|
version="4.33";
|
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "http://dist.schmorp.de/libev/Attic/${pname}-${version}.tar.gz";
|
|
|
|
|
sha256 = "1sjs4324is7fp21an4aas2z4dwsvs6z4xwrmp72vwpq1s6wbfzjh";
|
|
|
|
|
};
|
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
|
configureFlags = lib.optional (static) "LDFLAGS=-static";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
|
description = "A high-performance event loop/event model with lots of features";
|
2021-02-05 17:12:51 +00:00
|
|
|
|
maintainers = [ lib.maintainers.raskin ];
|
|
|
|
|
platforms = lib.platforms.all;
|
|
|
|
|
license = lib.licenses.bsd2; # or GPL2+
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
}
|