Commit 5c3d7775 authored by Adrian Pistol's avatar Adrian Pistol Committed by Anderson Torres
Browse files

libuev: init at 2.4.0

parent 3c15feef
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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;
  };