fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
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.11.2";
14
15 src = fetchFromGitHub {
16 owner = "emcrisostomo";
17 repo = "fswatch";
18 rev = version;
19 sha256 = "05vgpd1fx9fy3vnnmq5gz236avgva82axix127xy98gaxrac52vq";
20 };
21
22 nativeBuildInputs = [ autoreconfHook ];
23 buildInputs = [ gettext libtool makeWrapper texinfo ];
24
25 meta = with stdenv.lib; {
26 description = "A cross-platform file change monitor with multiple backends";
27 homepage = https://github.com/emcrisostomo/fswatch;
28 license = licenses.gpl3Plus;
29 platforms = platforms.all;
30 maintainers = with maintainers; [ pSub ];
31 };
32}