zipline: refactor environment variables (#377101)
[NixPkgs.git] / pkgs / by-name / li / libinotify-kqueue / package.nix
blobf797660b0b79a47a98552422478c6fd15d8de777
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   autoreconfHook,
6 }:
8 stdenv.mkDerivation rec {
9   pname = "libinotify-kqueue";
10   version = "20180201";
12   src = fetchFromGitHub {
13     owner = "libinotify-kqueue";
14     repo = "libinotify-kqueue";
15     rev = version;
16     sha256 = "sha256-9A5s8rPGlRv3KbxOukk0VB2IQrDxVjklO5RB+IA1cDY=";
17   };
19   nativeBuildInputs = [ autoreconfHook ];
21   doCheck = true;
22   checkFlags = [ "test" ];
24   meta = with lib; {
25     description = "Inotify shim for macOS and BSD";
26     homepage = "https://github.com/libinotify-kqueue/libinotify-kqueue";
27     license = licenses.mit;
28     maintainers = [ ];
29     platforms = with platforms; darwin ++ freebsd ++ netbsd ++ openbsd;
30   };