gnu: Add perl-linux-inotify2.
* gnu/packages/perl.scm (perl-linux-inotify2): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
319e0e0aeb
commit
66f309a553
1 changed files with 23 additions and 0 deletions
|
@ -29,6 +29,7 @@
|
||||||
;;; Copyright © 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
;;; Copyright © 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||||
;;; Copyright © 2020 Malte Frank Gerdes <malte.f.gerdes@gmail.com>
|
;;; Copyright © 2020 Malte Frank Gerdes <malte.f.gerdes@gmail.com>
|
||||||
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
|
;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -5904,6 +5905,28 @@ writing system to another, based on national or international transliteration
|
||||||
tables. Where possible a reverse transliteration is supported.")
|
tables. Where possible a reverse transliteration is supported.")
|
||||||
(license (package-license perl))))
|
(license (package-license perl))))
|
||||||
|
|
||||||
|
(define-public perl-linux-inotify2
|
||||||
|
(package
|
||||||
|
(name "perl-linux-inotify2")
|
||||||
|
(version "2.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"mirror://cpan/authors/id/M/ML/MLEHMANN/Linux-Inotify2-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0crlxmaa4lsgdjm5p9ib8rdxiy70qj1s68za3q3v57v8ll6s4hfx"))))
|
||||||
|
(build-system perl-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("perl-common-sense" ,perl-common-sense)))
|
||||||
|
(home-page "https://metacpan.org/release/Linux-Inotify2")
|
||||||
|
(synopsis "Scalable file change notification")
|
||||||
|
(description "This module implements an interface to the Linux 2.6.13 and
|
||||||
|
later Inotify file change notification system.")
|
||||||
|
(license (package-license perl))))
|
||||||
|
|
||||||
(define-public perl-list-allutils
|
(define-public perl-list-allutils
|
||||||
(package
|
(package
|
||||||
(name "perl-list-allutils")
|
(name "perl-list-allutils")
|
||||||
|
|
Reference in a new issue