6d87f8dc49
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
19 lines
503 B
Nix
19 lines
503 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libev-${version}";
|
|
version="4.25";
|
|
|
|
src = fetchurl {
|
|
url = "http://dist.schmorp.de/libev/Attic/${name}.tar.gz";
|
|
sha256 = "1295q0lkkbrlpd5dl5i48bh1rm8mjzh9y795jlvjz3bp4wf7wxbq";
|
|
};
|
|
|
|
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+
|
|
};
|
|
}
|