mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
38 lines
969 B
Nix
38 lines
969 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "epoll-shim";
|
|
version = "0.0.20240608";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jiixyj";
|
|
repo = "epoll-shim";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-PIVzVjXOECGv41KtAUmGzUiQ+4lVIyzGEOzVQQ1Pc54=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_INSTALL_PKGCONFIGDIR=${placeholder "out"}/lib/pkgconfig"
|
|
"-DBUILD_TESTING=${lib.boolToString finalAttrs.finalPackage.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 ];
|
|
};
|
|
})
|