Archived
1
0
Fork 0

gnu: Add inotify-tools.

* gnu/packages/linux.scm (inotify-tools): New variable.
This commit is contained in:
Ludovic Courtès 2014-05-26 00:08:50 +02:00
parent 25083588b9
commit de0b620e88

View file

@ -1125,3 +1125,23 @@ system.")
for systems using the Linux kernel. This includes commands such as for systems using the Linux kernel. This includes commands such as
'loadkeys', 'setfont', 'kbdinfo', and 'chvt'.") 'loadkeys', 'setfont', 'kbdinfo', and 'chvt'.")
(license gpl2+))) (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+)))