* [bug#72970] [PATCH] gnu: Add sbcl-file-finder, cl-file-finder, ecl-file-finder
@ 2024-09-02 15:32 Konrad Hinsen
2024-09-03 13:31 ` bug#72970: " Guillaume Le Vaillant
0 siblings, 1 reply; 2+ messages in thread
From: Konrad Hinsen @ 2024-09-02 15:32 UTC (permalink / raw)
To: 72970
* gnu/packages/lisp-xyz.scm (sbcl-file-finder): New public variable.
* gnu/packages/lisp-xyz.scm (cl-file-finder): New public variable.
* gnu/packages/lisp-xyz.scm (ecl-file-finder): New public variable.
Change-Id: Ibb3dc5c5a8ee5383dfa0bc8fa8a43a7d35c3397d
---
gnu/packages/lisp-xyz.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index c0d7f90aed..efb83e8f1e 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -14950,6 +14950,42 @@ (define-public ecl-file-attributes
(define-public cl-file-attributes
(sbcl-package->cl-source-package sbcl-file-attributes))
+(define-public sbcl-file-finder
+ (let ((commit "ec392d775eee33dbdea0d6532d20952438991f99")
+ (version "0.2.0"))
+ (package
+ (name "sbcl-file-finder")
+ (version version)
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/lisp-maintainers/file-finder")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1mpasi7n0ysggx0inxdbzlwavh08m0jxvv220ammvcyn3xybbchj"))))
+ (build-system asdf-build-system/sbcl)
+ (inputs
+ (list sbcl-alexandria
+ sbcl-cl-str
+ sbcl-file-attributes
+ sbcl-local-time
+ sbcl-named-readtables
+ sbcl-serapeum))
+ (synopsis "Enable rapid file search, inspection and manipulation")
+ (description
+ "Modern file handling for Common Lisp, which avoids many of
+the pitfalls of pathnames.")
+ (home-page "https://github.com/lisp-maintainers/file-finder")
+ (license license:gpl3+))))
+
+(define-public ecl-file-finder
+ (sbcl-package->ecl-package sbcl-file-finder))
+
+(define-public cl-file-finder
+ (sbcl-package->cl-source-package sbcl-file-finder))
+
(define-public sbcl-file-notify
(let ((commit "f12dc2f2aae5fee13355cd93a8cae0c4c412b76d")
(revision "0"))
base-commit: 3c21d0da62b3d6832dd1ab450d8ab50ab8d38f27
--
2.45.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-09-03 13:32 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-02 15:32 [bug#72970] [PATCH] gnu: Add sbcl-file-finder, cl-file-finder, ecl-file-finder Konrad Hinsen
2024-09-03 13:31 ` bug#72970: " Guillaume Le Vaillant
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).