summary refs log tree commit diff
path: root/pkgs/development/tools/misc/inotify-tools/default.nix
blob: 48e2139b74dccd2f23d4ebb7abd7d0814f91361a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, stdenv, autoreconfHook, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "inotify-tools";
  version = "3.20.11.0";

  src = fetchFromGitHub {
    repo = "inotify-tools";
    owner = "rvoicilas";
    rev = version;
    sha256 = "1m8avqccrhm38krlhp88a7v949f3hrzx060bbrr5dp5qw2nmw9j2";
  };

  nativeBuildInputs = [ autoreconfHook ];

  meta = with lib; {
    homepage = "https://github.com/rvoicilas/inotify-tools/wiki";
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ marcweber pSub shamilton ];
    platforms = platforms.linux;
  };
}