guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/09: gnu: Add cl-golden-utils.


From: guix-commits
Subject: 02/09: gnu: Add cl-golden-utils.
Date: Wed, 3 Feb 2021 11:46:27 -0500 (EST)

glv pushed a commit to branch master
in repository guix.

commit ed39a7c1dc6bde13f770e751cb6106c2a85d70c5
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Wed Feb 3 00:04:33 2021 +0000

    gnu: Add cl-golden-utils.
    
    * gnu/packages/lisp-xyz.scm (cl-golden-utils, ecl-golden-utils,
      sbcl-golden-utils): New variables.
    
    Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
---
 gnu/packages/lisp-xyz.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index ffa2652..8085217 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -115,6 +115,36 @@ portable between implementations.")
 (define-public ecl-alexandria
   (sbcl-package->ecl-package sbcl-alexandria))
 
+(define-public sbcl-golden-utils
+  (let ((commit "9424419d867d5c2f819196ee41667a818a5058e7")
+        (revision "1"))
+    (package
+      (name "sbcl-golden-utils")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://git.mfiano.net/mfiano/golden-utils";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "15x0phm6820yj3h37ibi06gjyh6z45sd2nz2n8lcbfflwm086q0h"))))
+      (build-system asdf-build-system/sbcl)
+      (inputs
+       `(("alexandria" ,sbcl-alexandria)))
+      (home-page "https://git.mfiano.net/mfiano/golden-utils";)
+      (synopsis "Common Lisp utility library")
+      (description
+       "This is a Common Lisp library providing various utilities.")
+      (license license:expat))))
+
+(define-public ecl-golden-utils
+  (sbcl-package->ecl-package sbcl-golden-utils))
+
+(define-public cl-golden-utils
+  (sbcl-package->cl-source-package sbcl-golden-utils))
+
 (define-public sbcl-asdf-finalizers
   (let ((commit "7f537f6c598b662ae987c6acc268dd27c25977e0")
         (revision "1"))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]