1 { lib, stdenv, fetchFromGitHub, autoreconfHook }:
3 stdenv.mkDerivation rec {
4 pname = "libinotify-kqueue";
7 src = fetchFromGitHub {
8 owner = "libinotify-kqueue";
9 repo = "libinotify-kqueue";
11 sha256 = "sha256-9A5s8rPGlRv3KbxOukk0VB2IQrDxVjklO5RB+IA1cDY=";
14 nativeBuildInputs = [ autoreconfHook ];
17 checkFlags = [ "test" ];
20 description = "Inotify shim for macOS and BSD";
21 homepage = "https://github.com/libinotify-kqueue/libinotify-kqueue";
22 license = licenses.mit;
23 maintainers = with maintainers; [ yana ];
24 platforms = with platforms; darwin ++ freebsd ++ netbsd ++ openbsd;