guix-commits
[Top][All Lists]
Advanced

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

09/09: gnu: Add trivial-macroexpand-all.


From: guix-commits
Subject: 09/09: gnu: Add trivial-macroexpand-all.
Date: Mon, 7 Oct 2019 07:57:07 -0400 (EDT)

ambrevar pushed a commit to branch master
in repository guix.

commit fa4bbd9f3427994b3041ec6834500a864dbbe238
Author: Pierre Neidhardt <address@hidden>
Date:   Mon Oct 7 13:50:07 2019 +0200

    gnu: Add trivial-macroexpand-all.
    
    * gnu/packages/lisp.scm (cl-trivial-macroexpand-all,
      ecl-trivial-macroexpand-all, sbcl-trivial-macroexpand-all): New variables.
---
 gnu/packages/lisp.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index 031d172..84597e4 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -7632,3 +7632,35 @@ size of a file in bytes, using system calls when 
possible.")
 
 (define-public ecl-trivial-file-size
   (sbcl-package->ecl-package sbcl-trivial-file-size))
+
+(define-public sbcl-trivial-macroexpand-all
+  (let ((commit "933270ac7107477de1bc92c1fd641fe646a7a8a9")
+        (revision "0"))
+    (package
+      (name "sbcl-trivial-macroexpand-all")
+      (version (git-version "0.0.0" revision commit))
+      (home-page "https://github.com/cbaggers/trivial-macroexpand-all";)
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url home-page)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "191hnn4b5j4i3crydmlzbm231kj0h7l8zj6mzj69r1npbzkas4bd"))))
+      (build-system asdf-build-system/sbcl)
+      (native-inputs
+       `(("fiveam" ,sbcl-fiveam)))
+      (synopsis "Portable macroexpand-all for Common Lisp")
+      (description
+       "This library provides a macroexpand-all function that calls the
+implementation specific equivalent.")
+      (license license:unlicense))))
+
+(define-public cl-trivial-macroexpand-all
+  (sbcl-package->cl-source-package sbcl-trivial-macroexpand-all))
+
+(define-public ecl-trivial-macroexpand-all
+  (sbcl-package->ecl-package sbcl-trivial-macroexpand-all))



reply via email to

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