guix-commits
[Top][All Lists]
Advanced

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

01/05: gnu: Add defpackage-plus.


From: guix-commits
Subject: 01/05: gnu: Add defpackage-plus.
Date: Sun, 29 Nov 2020 09:37:00 -0500 (EST)

glv pushed a commit to branch master
in repository guix.

commit 7a34169f6c737d7e88b241fce6260c44ef464656
Author: Adam Kandur <rndd@tuta.io>
AuthorDate: Sun Nov 29 14:52:47 2020 +0100

    gnu: Add defpackage-plus.
    
    * gnu/packages/lisp-xyz.scm (cl-defpackage-plus, ecl-defpackage-plus,
      sbcl-defpackage-plus): New variables.
    
    Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
---
 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 e92fa74..670fdbd 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -11447,3 +11447,34 @@ and comparison operations when used heavily in numeric 
code.")
 
 (define-public ecl-static-dispatch
   (sbcl-package->ecl-package sbcl-static-dispatch))
+
+(define-public sbcl-defpackage-plus
+  (let ((revision "0")
+        (commit "5492e27e0bdb7b75fa5177ea4388519dc7a75f11"))
+    (package
+      (name "sbcl-defpackage-plus")
+      (version (git-version "1.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/rpav/defpackage-plus";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0lzljvf343xb6mlh6lni2i27hpm5qd376522mk6hr2pa20vd6rdq"))))
+      (build-system asdf-build-system/sbcl)
+      (inputs
+       `(("alexandria" ,sbcl-alexandria)))
+      (home-page "https://github.com/rpav/defpackage-plus";)
+      (synopsis "Extensible @code{DEFPACKAGE} variant with version support")
+      (description
+       "@code{DEFPACKAGE-PLUS} is an extensible @code{DEFPACKAGE} variant with
+predictable cross-platform behavior and some utilities useful for versioning.")
+      (license license:bsd-2))))
+
+(define-public cl-defpackage-plus
+  (sbcl-package->cl-source-package sbcl-defpackage-plus))
+
+(define-public ecl-defpackage-plus
+  (sbcl-package->ecl-package sbcl-defpackage-plus))



reply via email to

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