Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
45 lines
823 B
Nix
45 lines
823 B
Nix
{
|
|
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 ];
|
|
};
|
|
}
|