2010-07-28 11:55:54 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
2014-08-17 21:12:37 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "inotify-tools-${version}";
|
|
|
|
version = "3.14";
|
2010-01-15 19:35:02 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-08-17 21:12:37 +00:00
|
|
|
url = "http://github.com/downloads/rvoicilas/inotify-tools/inotify-tools-${version}.tar.gz";
|
2014-08-31 12:46:24 +00:00
|
|
|
sha256 = "0by9frv1k59f76cx08sn06sk6lmdxsfb6zr0rshzhyrxi6lcqar2";
|
2010-01-15 19:35:02 +00:00
|
|
|
};
|
|
|
|
|
2014-08-17 21:12:37 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/rvoicilas/inotify-tools/wiki;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ marcweber pSub ];
|
|
|
|
platforms = platforms.linux;
|
2010-01-15 19:35:02 +00:00
|
|
|
};
|
|
|
|
}
|