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

19 lines
503 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}";
version="4.25";
2015-03-24 18:44:00 +00:00
src = fetchurl {
2015-06-26 17:53:10 +01:00
url = "http://dist.schmorp.de/libev/Attic/${name}.tar.gz";
sha256 = "1295q0lkkbrlpd5dl5i48bh1rm8mjzh9y795jlvjz3bp4wf7wxbq";
2015-03-24 18:44:00 +00:00
};
2015-05-14 20:12:04 +01:00
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+
};
}