mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
libuev: init at 2.4.0
This commit is contained in:
parent
3c15feef77
commit
5c3d7775dd
23
pkgs/development/libraries/libuev/default.nix
Normal file
23
pkgs/development/libraries/libuev/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue