Unverified Commit a0ffb1f4 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #222380 from wegank/epoll-shim-init

epoll-shim: init at unstable-2023-02-05
parents 548a54f4 5a023630
Loading
Loading
Loading
Loading
+38 −0
Original line number Diff line number Diff line
{ lib
, stdenv
, fetchFromGitHub
, cmake
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "epoll-shim";
  version = "unstable-2023-02-05";

  src = fetchFromGitHub {
    owner = "jiixyj";
    repo = finalAttrs.pname;
    rev = "702e845d7850e30a7b9e29f759c9c8f7bb40784b";
    hash = "sha256-QfBnF0/P2KjQggEdJCdqVJDeV/+iaN0OZIwIGyIyr68=";
  };

  nativeBuildInputs = [
    cmake
  ];

  cmakeFlags = [
    "-DCMAKE_INSTALL_PKGCONFIGDIR=${placeholder "out"}/lib/pkgconfig"
    "-DBUILD_TESTING=${lib.boolToString finalAttrs.doCheck}"
  ];

  # https://github.com/jiixyj/epoll-shim/issues/41
  # https://github.com/jiixyj/epoll-shim/pull/34
  doCheck = !stdenv.isDarwin;

  meta = with lib; {
    description = "Small epoll implementation using kqueue";
    homepage = "https://github.com/jiixyj/epoll-shim";
    license = licenses.mit;
    platforms = platforms.darwin ++ platforms.freebsd ++ platforms.netbsd ++ platforms.openbsd;
    maintainers = with maintainers; [ wegank ];
  };
})
+2 −0
Original line number Diff line number Diff line
@@ -19809,6 +19809,8 @@ with pkgs;
  entt = callPackage ../development/libraries/entt { };
  epoll-shim = callPackage ../development/libraries/epoll-shim { };
  libepoxy = callPackage ../development/libraries/libepoxy {
    inherit (darwin.apple_sdk.frameworks) Carbon OpenGL;
  };