[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/15: gnu: Add cl-vom.
From: |
guix-commits |
Subject: |
06/15: gnu: Add cl-vom. |
Date: |
Fri, 17 Jan 2020 07:47:00 -0500 (EST) |
glv pushed a commit to branch master
in repository guix.
commit 5b8bc813bacbc9f3b9820ffff660096285751c56
Author: Guillaume Le Vaillant <address@hidden>
AuthorDate: Fri Jan 17 09:37:03 2020 +0100
gnu: Add cl-vom.
* gnu/packages/lisp-xyz.scm (sbcl-vom, cl-vom, ecl-vom): New variables.
---
gnu/packages/lisp-xyz.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 97af7f2..0b70732 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -9382,3 +9382,34 @@ continuations of the @code{cl-cont} library.")
(define-public ecl-cl-coroutine
(sbcl-package->ecl-package sbcl-cl-coroutine))
+
+(define-public sbcl-vom
+ (let ((commit "1aeafeb5b74c53741b79497e0ef4acf85c92ff24")
+ (revision "1"))
+ (package
+ (name "sbcl-vom")
+ (version (git-version "0.1.4" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/orthecreedence/vom.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0536kppj76ax4lrxhv42npkfjsmx45km2g439vf9jmw3apinz9cy"))))
+ (build-system asdf-build-system/sbcl)
+ (synopsis "Tiny logging utility for Common Lisp")
+ (description
+ "Vom is a logging library for Common Lisp. It's goal is to be useful
+and small. It does not provide a lot of features as other loggers do, but
+has a small codebase that's easy to understand and use.")
+ (home-page "https://github.com/orthecreedence/vom")
+ (license license:expat))))
+
+(define-public cl-vom
+ (sbcl-package->cl-source-package sbcl-vom))
+
+(define-public ecl-vom
+ (sbcl-package->ecl-package sbcl-vom))
- branch master updated (33ed829 -> 8ea00ed), guix-commits, 2020/01/17
- 01/15: gnu: Add cl-misc-extensions., guix-commits, 2020/01/17
- 02/15: gnu: Add cl-mt19937., guix-commits, 2020/01/17
- 04/15: gnu: Add cl-cont., guix-commits, 2020/01/17
- 05/15: gnu: Add cl-coroutine., guix-commits, 2020/01/17
- 06/15: gnu: Add cl-vom.,
guix-commits <=
- 11/15: gnu: Add cl-async-repl., guix-commits, 2020/01/17
- 14/15: gnu: Add cl-async-future., guix-commits, 2020/01/17
- 07/15: gnu: Add cl-libuv., guix-commits, 2020/01/17
- 08/15: gnu: Add cl-async-base., guix-commits, 2020/01/17
- 12/15: gnu: Add cl-async-ssl., guix-commits, 2020/01/17
- 09/15: gnu: Add cl-async-util., guix-commits, 2020/01/17
- 03/15: gnu: Add cl-fset., guix-commits, 2020/01/17
- 10/15: gnu: Add cl-async., guix-commits, 2020/01/17
- 15/15: gnu: Add cl-green-threads., guix-commits, 2020/01/17
- 13/15: gnu: Add cl-blackbird., guix-commits, 2020/01/17