mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 12:47:33 -05:00
gnu: Add libuev.
* gnu/packages/linux.scm (libuev): New variable. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
parent
4ea4db5f8a
commit
00cf011a83
1 changed files with 22 additions and 0 deletions
|
@ -4903,6 +4903,28 @@ (define-public libite
|
|||
(home-page "https://troglobit.com/projects/libite/")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public libuev
|
||||
(package
|
||||
(name "libuev")
|
||||
(version "2.4.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/troglobit/libuev")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0ih82lxfdcq179kknzdl5c8vi1l0n5j7yh68y8f6kwsrm457paf7"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs (list autoconf automake libtool))
|
||||
(synopsis "Lightweight event loop library for epoll family APIs")
|
||||
(description "This package provides small event loop that wraps the
|
||||
epoll family of APIs.")
|
||||
(home-page "https://troglobit.com/projects/libuev/")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public libraw1394
|
||||
(package
|
||||
(name "libraw1394")
|
||||
|
|
Loading…
Reference in a new issue