all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Konrad Hinsen <konrad.hinsen@fastmail.net>
To: 72970@debbugs.gnu.org
Subject: [bug#72970] [PATCH] gnu: Add sbcl-file-finder, cl-file-finder, ecl-file-finder
Date: Mon, 02 Sep 2024 17:32:47 +0200	[thread overview]
Message-ID: <m1y14af4v4.fsf@fastmail.net> (raw)

* 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




             reply	other threads:[~2024-09-02 15:40 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-09-02 15:32 Konrad Hinsen [this message]
2024-09-03 13:31 ` bug#72970: [PATCH] gnu: Add sbcl-file-finder, cl-file-finder, ecl-file-finder Guillaume Le Vaillant

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m1y14af4v4.fsf@fastmail.net \
    --to=konrad.hinsen@fastmail.net \
    --cc=72970@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.