mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
19 lines
503 B
Nix
19 lines
503 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libev-${version}";
|
|
version="4.24";
|
|
|
|
src = fetchurl {
|
|
url = "http://dist.schmorp.de/libev/Attic/${name}.tar.gz";
|
|
sha256 = "08gqsza1czx0nf62nkk183jb0946yzjsymaacxbzdgcs8z9r6dcp";
|
|
};
|
|
|
|
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+
|
|
};
|
|
}
|