Files

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

45 lines
823 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
# for xargs
gettext,
libtool,
makeWrapper,
texinfo,
}:
stdenv.mkDerivation rec {
pname = "fswatch";
version = "1.18.3";
src = fetchFromGitHub {
owner = "emcrisostomo";
repo = "fswatch";
rev = version;
sha256 = "sha256-C/NHDhhRTQppu8xRWe9fy1+KIutyoRbkkabUtGlJ1fE=";
};
nativeBuildInputs = [
autoreconfHook
makeWrapper
];
buildInputs = [
gettext
libtool
texinfo
];
enableParallelBuilding = true;
meta = with lib; {
description = "Cross-platform file change monitor with multiple backends";
mainProgram = "fswatch";
homepage = "https://github.com/emcrisostomo/fswatch";
license = licenses.gpl3Plus;
platforms = platforms.all;
maintainers = with maintainers; [ pSub ];
};
}