2022-01-03 00:49:13 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
|
2018-08-10 02:07:55 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "libinotify-kqueue";
|
2018-08-10 02:07:55 +02:00
|
|
|
version = "20180201";
|
|
|
|
|
2022-01-03 00:49:13 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libinotify-kqueue";
|
|
|
|
repo = "libinotify-kqueue";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "sha256-9A5s8rPGlRv3KbxOukk0VB2IQrDxVjklO5RB+IA1cDY=";
|
2018-08-10 02:07:55 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
2018-08-10 11:22:19 +02:00
|
|
|
doCheck = true;
|
|
|
|
checkFlags = [ "test" ];
|
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2018-08-10 02:07:55 +02:00
|
|
|
description = "Inotify shim for macOS and BSD";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/libinotify-kqueue/libinotify-kqueue";
|
2018-08-10 02:07:55 +02:00
|
|
|
license = licenses.mit;
|
2021-12-31 19:48:55 +01:00
|
|
|
maintainers = with maintainers; [ yana ];
|
2018-08-10 02:07:55 +02:00
|
|
|
platforms = with platforms; darwin ++ freebsd ++ netbsd ++ openbsd;
|
|
|
|
};
|
|
|
|
}
|