all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [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

* bug#72970: [PATCH] gnu: Add sbcl-file-finder, cl-file-finder, ecl-file-finder
  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 ` Guillaume Le Vaillant
  0 siblings, 0 replies; 2+ messages in thread
From: Guillaume Le Vaillant @ 2024-09-03 13:31 UTC (permalink / raw)
  To: Konrad Hinsen; +Cc: 72970-done

[-- Attachment #1: Type: text/plain, Size: 91 bytes --]

Patch applied as b3919445432f35d779d342fcd63f5ca8ca757234 with some
modifications.
Thanks.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

^ permalink raw reply	[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 external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.