8 stdenv.mkDerivation rec {
9 pname = "libinotify-kqueue";
12 src = fetchFromGitHub {
13 owner = "libinotify-kqueue";
14 repo = "libinotify-kqueue";
16 sha256 = "sha256-9A5s8rPGlRv3KbxOukk0VB2IQrDxVjklO5RB+IA1cDY=";
19 nativeBuildInputs = [ autoreconfHook ];
22 checkFlags = [ "test" ];
25 description = "Inotify shim for macOS and BSD";
26 homepage = "https://github.com/libinotify-kqueue/libinotify-kqueue";
27 license = licenses.mit;
29 platforms = with platforms; darwin ++ freebsd ++ netbsd ++ openbsd;