about summary refs log tree commit diff
path: root/pkgs/development/libraries/libuev/default.nix
blob: a124c25a20404f259d6e3c921133db625ca1f9de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook }:

stdenv.mkDerivation rec {
  pname = "libuev";
  version = "2.4.1";

  src = fetchFromGitHub {
    owner = "troglobit";
    repo = "libuev";
    rev = "v${version}";
    hash = "sha256-x1Sk7IuhlBQPFL7Rq4tmEanBxI/WaQ2L5fpUyEWOoi8=";
  };

  nativeBuildInputs = [ pkg-config autoreconfHook ];

  meta = with lib; {
    description = "Lightweight event loop library for Linux epoll() family APIs";
    homepage = "https://codedocs.xyz/troglobit/libuev/";
    license = licenses.mit;
    platforms = platforms.linux;
    maintainers = with maintainers; [ vifino ];
  };
}