1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/libraries/libev/default.nix

22 lines
675 B
Nix
Raw Normal View History

2015-03-24 18:44:00 +00:00
{ stdenv, fetchurl }:
2015-03-24 18:44:00 +00:00
stdenv.mkDerivation rec {
name = "libev-${version}";
2015-03-24 23:07:22 +00:00
version="4.19";
2015-03-24 18:44:00 +00:00
src = fetchurl {
2015-03-24 23:07:22 +00:00
url = "http://dist.schmorp.de/libev/${name}.tar.gz";
sha256 = "1jyw7qbl0spxqa0dccj9x1jsw7cj7szff43cq4acmklnra4mzz48";
2015-03-24 18:44:00 +00:00
};
2015-05-14 20:12:04 +01:00
# 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 ];
2015-03-24 18:44:00 +00:00
platforms = stdenv.lib.platforms.all;
license = stdenv.lib.licenses.bsd2; # or GPL2+
};
}