2010-07-28 12:55:54 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
2014-08-17 22:12:37 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "inotify-tools-${version}";
|
|
|
|
version = "3.14";
|
2010-01-15 19:35:02 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-08-17 22:12:37 +01:00
|
|
|
url = "http://github.com/downloads/rvoicilas/inotify-tools/inotify-tools-${version}.tar.gz";
|
2010-01-15 19:35:02 +00:00
|
|
|
sha256 = "0icl4bx041axd5dvhg89kilfkysjj86hjakc7bk8n49cxjn4cha6";
|
|
|
|
};
|
|
|
|
|
2014-08-17 22:12:37 +01: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
|
|
|
};
|
|
|
|
}
|