libuev: init at 2.4.0

This commit is contained in:
Adrian Pistol 2023-08-29 14:46:41 +02:00 committed by Anderson Torres
parent 3c15feef77
commit 5c3d7775dd
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "libuev";
version = "2.4.0";
src = fetchFromGitHub {
owner = "troglobit";
repo = "libuev";
rev = "v${version}";
hash = "sha256-x6l7CqlZ82kc8shAf2SxgIa4ESu0fTtnOgGz5joVCEY=";
};
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.unix;
maintainers = with maintainers; [ vifino ];
};
}

View file

@ -23670,6 +23670,8 @@ with pkgs;
libuecc = callPackage ../development/libraries/libuecc { };
libuev = callPackage ../development/libraries/libuev {};
libui = callPackage ../development/libraries/libui {
inherit (darwin.apple_sdk.frameworks) Cocoa;
};