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

stdenv.mkDerivation rec {
  name = "inotify-tools-${version}";
  version = "3.20.1";

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

  nativeBuildInputs = [ autoreconfHook ];

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