Files
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

51 lines
1.3 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
autoreconfHook,
}:
stdenv.mkDerivation rec {
pname = "libinotify-kqueue";
version = "20240724";
src = fetchFromGitHub {
owner = "libinotify-kqueue";
repo = "libinotify-kqueue";
rev = version;
sha256 = "sha256-m59GWrx5C+JXDbhVdKx+SNSn8wwIKyW+KlXabNi17A0=";
};
patches = [
# https://github.com/libinotify-kqueue/libinotify-kqueue/pull/23
(fetchpatch {
name = "add-configure-caching.patch";
url = "https://github.com/libinotify-kqueue/libinotify-kqueue/commit/81a8f05c1ce6df819dc898f3754c9c874ee24b10.patch";
hash = "sha256-imKS2DuQrHSMnJH1gOYrVSeWTe2nhcl8Gm9IX5B9ZqI=";
})
];
nativeBuildInputs = [ autoreconfHook ];
configureFlags =
lib.optionals (with stdenv; buildPlatform != hostPlatform && hostPlatform.isFreeBSD)
[
"ik_cv_have_note_extend_in=yes"
"ik_cv_have_note_extend_out=yes"
"ik_cv_have_o_path=yes"
"ik_cv_have_o_empty_path=yes"
"ik_cv_have_at_empty_path=yes"
];
checkFlags = [ "test" ];
meta = {
description = "Inotify shim for macOS and BSD";
homepage = "https://github.com/libinotify-kqueue/libinotify-kqueue";
license = lib.licenses.mit;
maintainers = [ ];
platforms = with lib.platforms; darwin ++ freebsd ++ netbsd ++ openbsd;
};
}