nixpkgs/pkgs/development/libraries/libev/default.nix
R. RyanTM b62679839f libev: 4.25 -> 4.27
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/libev/versions
2019-07-17 10:42:35 +02:00

19 lines
503 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libev-${version}";
version="4.27";
src = fetchurl {
url = "http://dist.schmorp.de/libev/Attic/${name}.tar.gz";
sha256 = "0kil23cgsp0r5shvnwwbsy7fzxb62sxqzqbkbkfp5w54ipy2cm9d";
};
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+
};
}