guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add file-attributes.


From: guix-commits
Subject: branch master updated: gnu: Add file-attributes.
Date: Tue, 02 Mar 2021 04:09:31 -0500

This is an automated email from the git hooks/post-receive script.

ambrevar pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 14b32f6  gnu: Add file-attributes.
14b32f6 is described below

commit 14b32f62ac5171aaef206a6b8eb621ae96dc2856
Author: Pierre Neidhardt <mail@ambrevar.xyz>
AuthorDate: Tue Mar 2 10:08:46 2021 +0100

    gnu: Add file-attributes.
    
    * gnu/packages/lisp-xyz.scm (cl-file-attributes, ecl-file-attributes,
    sbcl-file-attributes): New variables.
---
 gnu/packages/lisp-xyz.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index b7c5da9..4a1bec3 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -14645,3 +14645,29 @@ on UNIX like platforms.")
 
 (define-public cl-daemon
   (sbcl-package->cl-source-package sbcl-daemon))
+
+(define-public sbcl-file-attributes
+  (let ((commit "2c6fdb08f136d5f9a8d12626ed5b64edc2ae1bb8"))
+    (package
+      (name "sbcl-file-attributes")
+      (version (git-version "1.0.0" "1" commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/Shinmera/file-attributes/";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1vi1h6pd04g41ay3hr76ac89isyz4x864g87r8v9xcl4gizkzwlq"))))
+      (build-system asdf-build-system/sbcl)
+      (inputs
+       `(("cffi" ,sbcl-cffi)
+         ("documentation-utils" ,sbcl-documentation-utils)
+         ("trivial-features" ,sbcl-trivial-features)))
+      (home-page "https://shinmera.github.io/file-attributes/";)
+      (synopsis "Access to common file attributes in Common Lisp")
+      (description
+       "This is a small OS portability library to retrieve and set file
+attributes not supported by the Common Lisp standard functions.")
+      (license license:zlib))))



reply via email to

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