python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libinotify-kqueue / default.nix
blobd01407b43d0f015d67036b9e53efc52c44a2ad36
1 { lib, stdenv, fetchFromGitHub, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   pname = "libinotify-kqueue";
5   version = "20180201";
7   src = fetchFromGitHub {
8     owner = "libinotify-kqueue";
9     repo = "libinotify-kqueue";
10     rev = version;
11     sha256 = "sha256-9A5s8rPGlRv3KbxOukk0VB2IQrDxVjklO5RB+IA1cDY=";
12   };
14   nativeBuildInputs = [ autoreconfHook ];
16   doCheck = true;
17   checkFlags = [ "test" ];
19   meta = with lib; {
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;
25   };