[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/03: gnu: Add libuev.
From: |
guix-commits |
Subject: |
02/03: gnu: Add libuev. |
Date: |
Thu, 23 Dec 2021 12:13:35 -0500 (EST) |
mothacehe pushed a commit to branch master
in repository guix.
commit 00cf011a831fe3b3e6f623af1994ed2ec98855d0
Author: Petr Hodina <phodina@protonmail.com>
AuthorDate: Tue Dec 21 22:20:01 2021 +0100
gnu: Add libuev.
* gnu/packages/linux.scm (libuev): New variable.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
---
gnu/packages/linux.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 6f41a7f..bab88c7 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -4903,6 +4903,28 @@ useful *BSD sys/queue.h and sys/tree.h API's")
(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")