mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: inotify-tools: Update to 3.20.1.
* gnu/packages/linux.scm (inotify-tools): Update to 3.20.1. [source]: Download from new home. Set file-name. [native-inputs]: Add AUTOCONF, AUTOMAKE and LIBTOOL. [arguments]: Add 'bootstrap' phase. [home-page]: Update to redirected.
This commit is contained in:
parent
0aa23e02ea
commit
fb5b359d77
1 changed files with 15 additions and 5 deletions
|
@ -1950,17 +1950,27 @@ (define-public kbd
|
||||||
(define-public inotify-tools
|
(define-public inotify-tools
|
||||||
(package
|
(package
|
||||||
(name "inotify-tools")
|
(name "inotify-tools")
|
||||||
(version "3.13")
|
(version "3.20.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
"mirror://sourceforge/inotify-tools/inotify-tools/"
|
"https://github.com/rvoicilas/inotify-tools/archive/"
|
||||||
version "/inotify-tools-" version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0icl4bx041axd5dvhg89kilfkysjj86hjakc7bk8n49cxjn4cha6"))))
|
"1b22c8x4pjnz3abx4dikpbj43zprjw79pdkd4xw111dsxlfwqcx4"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(home-page "http://inotify-tools.sourceforge.net/")
|
(arguments
|
||||||
|
`(#:phases (modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'bootstrap
|
||||||
|
(lambda _
|
||||||
|
(invoke "autoreconf" "-vif"))))))
|
||||||
|
(native-inputs
|
||||||
|
`(("autoconf" ,autoconf)
|
||||||
|
("automake" ,automake)
|
||||||
|
("libtool" ,libtool)))
|
||||||
|
(home-page "https://github.com/rvoicilas/inotify-tools/wiki")
|
||||||
(synopsis "Monitor file accesses")
|
(synopsis "Monitor file accesses")
|
||||||
(description
|
(description
|
||||||
"The inotify-tools packages provides a C library and command-line tools
|
"The inotify-tools packages provides a C library and command-line tools
|
||||||
|
|
Loading…
Reference in a new issue