about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libev
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/libev')
-rw-r--r--nixpkgs/pkgs/development/libraries/libev/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/libev/default.nix b/nixpkgs/pkgs/development/libraries/libev/default.nix
new file mode 100644
index 000000000000..750cb3974cf7
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/libev/default.nix
@@ -0,0 +1,28 @@
+{ lib, stdenv, fetchurl
+, # Note: -static hasn’t work on darwin
+  static ? with stdenv.hostPlatform; isStatic && !isDarwin
+}:
+
+# 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.
+
+stdenv.mkDerivation rec {
+  pname = "libev";
+  version="4.33";
+
+  src = fetchurl {
+    url = "http://dist.schmorp.de/libev/Attic/${pname}-${version}.tar.gz";
+    sha256 = "1sjs4324is7fp21an4aas2z4dwsvs6z4xwrmp72vwpq1s6wbfzjh";
+  };
+
+  configureFlags = lib.optional (static) "LDFLAGS=-static";
+
+  meta = {
+    description = "A high-performance event loop/event model with lots of features";
+    maintainers = [ lib.maintainers.raskin ];
+    platforms = lib.platforms.all;
+    license = lib.licenses.bsd2; # or GPL2+
+  };
+}