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