[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/11: gnu: Add fare-utils.
From: |
guix-commits |
Subject: |
11/11: gnu: Add fare-utils. |
Date: |
Tue, 25 Jun 2019 11:41:49 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 31263ec227c077f55893de61e8b839d7c97ae0c1
Author: Katherine Cox-Buday <address@hidden>
Date: Fri Jun 7 15:23:15 2019 -0500
gnu: Add fare-utils.
* gnu/packages/lisp.scm (fare-utils): New variable.
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/lisp.scm | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index 03f5655..518204f 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -5626,3 +5626,40 @@ whole lot more into a single form.")
(define-public ecl-metabang-bind
(sbcl-package->ecl-package sbcl-metabang-bind))
+
+(define-public sbcl-fare-utils
+ (let ((commit "66e9c6f1499140bc00ccc22febf2aa528cbb5724")
+ (revision "1"))
+ (package
+ (name "sbcl-fare-utils")
+ (version (git-version "1.0.0.5" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url
+ "https://gitlab.common-lisp.net/frideau/fare-utils.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "01wsr1aap3jdzhn4hrqjbhsjx6qci9dbd3gh4gayv1p49rbg8aqr"))))
+ (build-system asdf-build-system/sbcl)
+ (arguments
+ `(#:test-asd-file "test/fare-utils-test.asd"))
+ (native-inputs
+ `(("sbcl-hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
+ (synopsis "Collection of utilities and data structures")
+ (description
+ "fare-utils is a small collection of utilities. It contains a lot of
+basic everyday functions and macros.")
+ (home-page "https://gitlab.common-lisp.net/frideau/fare-utils")
+ ;; MIT License
+ (license license:expat))))
+
+(define-public cl-fare-utils
+ (sbcl-package->cl-source-package sbcl-fare-utils))
+
+(define-public ecl-fare-utils
+ (sbcl-package->ecl-package sbcl-fare-utils))
- 03/11: gnu: guile-persist: Install .go files in the right place., (continued)
- 03/11: gnu: guile-persist: Install .go files in the right place., guix-commits, 2019/06/25
- 01/11: compile: Enable 'shadowed-toplevel' warning., guix-commits, 2019/06/25
- 09/11: gnu: Add burgled-batteries3., guix-commits, 2019/06/25
- 10/11: gnu: Add metabang-bind., guix-commits, 2019/06/25
- 05/11: gnu: Add clunit., guix-commits, 2019/06/25
- 04/11: gnu: Add leela-zero., guix-commits, 2019/06/25
- 02/11: build: Report build errors via 'report-load-error'., guix-commits, 2019/06/25
- 07/11: gnu: Add parse-declarations., guix-commits, 2019/06/25
- 08/11: gnu: Add cl-quickcheck., guix-commits, 2019/06/25
- 06/11: gnu: Add py4cl., guix-commits, 2019/06/25
- 11/11: gnu: Add fare-utils.,
guix-commits <=