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

19 lines
505 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 {
pname = "libev";
2019-12-23 18:23:20 +00:00
version="4.31";
2015-03-24 18:44:00 +00:00
src = fetchurl {
url = "http://dist.schmorp.de/libev/Attic/${pname}-${version}.tar.gz";
2019-12-23 18:23:20 +00:00
sha256 = "0nkfqv69wfyy2bpga4d53iqydycpik8jp8x6q70353hia8mmv1gd";
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+
};
}