mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 02:03:01 +00:00
27 lines
705 B
Nix
27 lines
705 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libinotify-kqueue";
|
|
version = "20180201";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libinotify-kqueue";
|
|
repo = "libinotify-kqueue";
|
|
rev = version;
|
|
sha256 = "sha256-9A5s8rPGlRv3KbxOukk0VB2IQrDxVjklO5RB+IA1cDY=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
doCheck = true;
|
|
checkFlags = [ "test" ];
|
|
|
|
meta = with lib; {
|
|
description = "Inotify shim for macOS and BSD";
|
|
homepage = "https://github.com/libinotify-kqueue/libinotify-kqueue";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ yana ];
|
|
platforms = with platforms; darwin ++ freebsd ++ netbsd ++ openbsd;
|
|
};
|
|
}
|