depot/third_party/nixpkgs/pkgs/development/libraries/libinotify-kqueue/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

26 lines
682 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 = [ ];
platforms = with platforms; darwin ++ freebsd ++ netbsd ++ openbsd;
};
}