nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ stdenv
2, fetchFromGitHub
3, autoreconfHook
4, findutils # for xargs
5, gettext
6, libtool
7, makeWrapper
8, texinfo
9}:
10
11stdenv.mkDerivation rec {
12 name = "fswatch-${version}";
13 version = "1.9.3";
14
15 src = fetchFromGitHub {
16 owner = "emcrisostomo";
17 repo = "fswatch";
18 rev = version;
19 sha256 = "1g329aapdvbzhr39wyh295shpfq5f0nlzsqkjnr8l6zzak7f4yrg";
20 };
21
22 buildInputs = [ autoreconfHook gettext libtool makeWrapper texinfo ];
23
24 meta = with stdenv.lib; {
25 description = "A cross-platform file change monitor with multiple backends";
26 homepage = https://github.com/emcrisostomo/fswatch;
27 license = licenses.gpl3Plus;
28 platforms = platforms.all;
29 maintainers = with maintainers; [ pSub ];
30 };
31}