summary refs log tree commit diff
path: root/pkgs/development/libraries/libev/default.nix
blob: d27df16eb94400e21f058e4c4a1acd7e5d81a3bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "libev-${version}";
  version="4.19";
  src = fetchurl {
    url = "http://dist.schmorp.de/libev/Attic/${name}.tar.gz";
    sha256 = "1jyw7qbl0spxqa0dccj9x1jsw7cj7szff43cq4acmklnra4mzz48";
  };

  patches = [ ./noreturn.patch ];

  # Version 4.19 is not valid C11 (which Clang default to)
  # Check if this is still necessary on upgrade
  NIX_CFLAGS_COMPILE = if stdenv.cc.isClang then "-std=c99" else null;

  meta = {
    description = "A high-performance event loop/event model with lots of features";
    maintainers = [ stdenv.lib.maintainers.raskin ];
    platforms = stdenv.lib.platforms.all;
    license = stdenv.lib.licenses.bsd2; # or GPL2+
  };
}