diff options
author | Gabriel Hondet <gabriel.hondet@cominety.net> | 2023-10-08 19:27:43 +0200 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2023-10-10 10:11:45 +0200 |
commit | 2195ebcdefee30702f3b5bb24f2713bd8b83d0e1 (patch) | |
tree | 446079ef9096ff9547e73ae82810350cd9cc67f2 /gnu | |
parent | 1dbc630a3390d7232e26b4cfa3499b579b82e553 (diff) |
gnu: Add cl-clad.
* gnu/packages/lisp-xyz.scm (cl-clad, sbcl-clad): New variables.
Co-authored-by: Guillaume Le Vaillant <glv@posteo.net>
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index a1619749ba..ad91bf3762 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -10628,6 +10628,41 @@ arrangements.") (define-public cl-xhtmlambda (sbcl-package->cl-source-package sbcl-xhtmlambda)) +(define-public sbcl-clad + (let ((commit "1ff6f417d4ee3836d1edd96923d4b03f3cafa849") + (revision "0")) + (package + (name "sbcl-clad") + (version + ;; There's no version, but there's a timestamp + (git-version "2023-01-21" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.common-lisp.net/mantoniotti/CLAD") + (commit commit))) + (file-name (git-file-name "cl-clad" version)) + (sha256 + (base32 "184mhdq7pxd6hd4rzv8z4lfbwnkyhgm5bdn3xsqaav2j0d1dqm6i")) + (modules '((guix build utils))) + (snippet + ;; Delete compiled ABCL files. + '(begin + (delete-file "clad-package.abcl") + (delete-file "clad.abcl"))))) + (build-system asdf-build-system/sbcl) + (synopsis "Library providing standard locations on the file system") + (description + "The Common Lisp Application Directories (CLAD) library is +a simple API collection that provides access to a set of @emph{standard} +Common Lisp folders on a per-application or per-library basis.") + (home-page "https://gitlab.common-lisp.net/mantoniotti/CLAD") + (license license:expat)))) ;the mit-modern-variant is used + +(define-public cl-clad + (sbcl-package->cl-source-package sbcl-clad)) + (define-public sbcl-plump (let ((commit "0c3e0b57b43b6e0c5794b6a902f1cf5bee2a2927") (revision "3")) |