diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-05-26 00:08:50 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-05-26 00:08:50 +0200 |
commit | de0b620e88226cc9da6eaabf5a7c6111ba0fba3e (patch) | |
tree | e97f18e55a189b42a48b5ce52e1093ae462a7dab /gnu | |
parent | 25083588b9d07077f77a495381f545b6a0e5ca69 (diff) | |
download | gnu-guix-de0b620e88226cc9da6eaabf5a7c6111ba0fba3e.tar gnu-guix-de0b620e88226cc9da6eaabf5a7c6111ba0fba3e.tar.gz |
gnu: Add inotify-tools.
* gnu/packages/linux.scm (inotify-tools): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/linux.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index e9e7ebb99c..130a0f2a9a 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1125,3 +1125,23 @@ system.") for systems using the Linux kernel. This includes commands such as 'loadkeys', 'setfont', 'kbdinfo', and 'chvt'.") (license gpl2+))) + +(define-public inotify-tools + (package + (name "inotify-tools") + (version "3.13") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://sourceforge/inotify-tools/inotify-tools/" + version "/inotify-tools-" version ".tar.gz")) + (sha256 + (base32 + "0icl4bx041axd5dvhg89kilfkysjj86hjakc7bk8n49cxjn4cha6")))) + (build-system gnu-build-system) + (home-page "http://inotify-tools.sourceforge.net/") + (synopsis "Monitor file accesses") + (description + "The inotify-tools packages provides a C library and command-line tools +to use Linux' inotify mechanism, which allows file accesses to be monitored.") + (license gpl2+))) |