lol
1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "inotify-tools-${version}";
5 version = "3.14";
6
7 src = fetchurl {
8 url = "http://github.com/downloads/rvoicilas/inotify-tools/inotify-tools-${version}.tar.gz";
9 sha256 = "0by9frv1k59f76cx08sn06sk6lmdxsfb6zr0rshzhyrxi6lcqar2";
10 };
11
12 meta = with stdenv.lib; {
13 homepage = https://github.com/rvoicilas/inotify-tools/wiki;
14 license = licenses.gpl2;
15 maintainers = with maintainers; [ marcweber pSub ];
16 platforms = platforms.linux;
17 };
18}