[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/22: gnu: Add fast-io.
From: |
guix-commits |
Subject: |
07/22: gnu: Add fast-io. |
Date: |
Sun, 7 Apr 2019 02:10:25 -0400 (EDT) |
iyzsong pushed a commit to branch master
in repository guix.
commit 4a290afbba992a2ead29d8f9c819dd850e201577
Author: Katherine Cox-Buday <address@hidden>
Date: Fri Mar 29 16:01:51 2019 -0500
gnu: Add fast-io.
* gnu/packages/lisp.scm (sbcl-fast-io, cl-fast-io): New variables.
Signed-off-by: 宋文武 <address@hidden>
---
gnu/packages/lisp.scm | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index 91ee3d3..788c5c4 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -4654,3 +4654,42 @@ against the last run.")
(define-public cl-checkl
(sbcl-package->cl-source-package sbcl-checkl))
+
+(define-public sbcl-fast-io
+ (let ((commit "dc3a71db7e9b756a88781ae9c342fe9d4bbab51c")
+ (revision "1"))
+ (package
+ (name "sbcl-fast-io")
+ (version (git-version "1.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/rpav/fast-io.git";)
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1jsp6xvi26ln6fdy5j5zi05xvan8jsqdhisv552dy6xg6ws8i1yq"))))
+ (build-system asdf-build-system/sbcl)
+ (arguments
+ ;; Error while trying to load definition for system fast-io-test from
+ ;; pathname [...]/fast-io-test.asd: The function CHECKL:DEFINE-TEST-OP
+ ;; is undefined.
+ '(#:tests? #f))
+ (native-inputs
+ `(("sbcl-fiveam" ,sbcl-fiveam)
+ ("sbcl-checkl" ,sbcl-checkl)))
+ (inputs
+ `(("sbcl-alexandria" ,sbcl-alexandria)
+ ("sbcl-trivial-gray-streams" ,sbcl-trivial-gray-streams)
+ ("sbcl-static-vectors" ,sbcl-static-vectors)))
+ (home-page "https://github.com/rpav/fast-io";)
+ (synopsis "Fast octet-vector/stream I/O for Common Lisp")
+ (description
+ "Fast-io is about improving performance to octet-vectors and octet
+streams (though primarily the former, while wrapping the latter).")
+ ;; Author specifies this as NewBSD which is an alias
+ (license license:bsd-3))))
+
+(define-public cl-fast-io
+ (sbcl-package->cl-source-package sbcl-fast-io))
- branch master updated (0eb306d -> d3715a3), guix-commits, 2019/04/07
- 04/22: gnu: Add static-vectors., guix-commits, 2019/04/07
- 02/22: gnu: Add smart-buffer., guix-commits, 2019/04/07
- 03/22: gnu: Add fast-http., guix-commits, 2019/04/07
- 01/22: gnu: Add xsubseq., guix-commits, 2019/04/07
- 06/22: gnu: Add checkl., guix-commits, 2019/04/07
- 10/22: gnu: Add http-body., guix-commits, 2019/04/07
- 14/22: gnu: Add lack-response., guix-commits, 2019/04/07
- 05/22: gnu: Add marshal., guix-commits, 2019/04/07
- 07/22: gnu: Add fast-io.,
guix-commits <=
- 08/22: gnu: Add jonathan., guix-commits, 2019/04/07
- 11/22: gnu: Add circular-streams., guix-commits, 2019/04/07
- 12/22: gnu: Add lack-request., guix-commits, 2019/04/07
- 09/22: gnu: Keep the 'cl-' name prefix for sbcl packages., guix-commits, 2019/04/07
- 13/22: gnu: Add local-time., guix-commits, 2019/04/07
- 15/22: gnu: Add lack-component., guix-commits, 2019/04/07
- 20/22: gnu: Add lack., guix-commits, 2019/04/07
- 19/22: gnu: Add lack-middleware-static., guix-commits, 2019/04/07
- 17/22: gnu: Add lack-middleware-backtrace., guix-commits, 2019/04/07
- 22/22: gnu: Add clack., guix-commits, 2019/04/07