nixpkgs-suyu/pkgs/development/libraries/libinotify-kqueue/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
705 B
Nix
Raw Normal View History

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