nixpkgs/pkgs/development/libraries/libev/default.nix

26 lines
805 B
Nix
Raw Normal View History

{ stdenv, fetchurl, static ? false }:
# 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 18:44:00 +00:00
stdenv.mkDerivation rec {
pname = "libev";
2020-03-22 17:57:47 +00:00
version="4.33";
2015-03-24 18:44:00 +00:00
src = fetchurl {
url = "http://dist.schmorp.de/libev/Attic/${pname}-${version}.tar.gz";
2020-03-22 17:57:47 +00:00
sha256 = "1sjs4324is7fp21an4aas2z4dwsvs6z4xwrmp72vwpq1s6wbfzjh";
2015-03-24 18:44:00 +00:00
};
2015-05-14 20:12:04 +01:00
configureFlags = stdenv.lib.optional (static) "LDFLAGS=-static";
meta = {
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;
license = stdenv.lib.licenses.bsd2; # or GPL2+
};
}