mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-14 07:00:32 -05:00
gnu: Add depot.
* gnu/packages/lisp-xyz.scm (cl-depot, ecl-depot, sbcl-depot): New variables.
This commit is contained in:
parent
42b5c198d3
commit
d4710b6614
1 changed files with 45 additions and 0 deletions
|
@ -18134,6 +18134,51 @@ (define-public ecl-file-attributes
|
||||||
(define-public cl-file-attributes
|
(define-public cl-file-attributes
|
||||||
(sbcl-package->cl-source-package sbcl-file-attributes))
|
(sbcl-package->cl-source-package sbcl-file-attributes))
|
||||||
|
|
||||||
|
(define-public sbcl-depot
|
||||||
|
(let ((commit "73822d9f480cbad00971b45ee80117297a67fb53")
|
||||||
|
(revision "1"))
|
||||||
|
(package
|
||||||
|
(name "sbcl-depot")
|
||||||
|
(version (git-version "1.0.0" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/Shinmera/depot/")
|
||||||
|
(commit commit)))
|
||||||
|
(sha256
|
||||||
|
(base32 "1v42pirdwbxy8l8i9a2jmbpri8a62vh0r4vm25xwaak0y4gr71va"))
|
||||||
|
(file-name (git-file-name "depot" version))))
|
||||||
|
(build-system asdf-build-system/sbcl)
|
||||||
|
(inputs
|
||||||
|
(list sbcl-atomics
|
||||||
|
sbcl-babel
|
||||||
|
sbcl-documentation-utils
|
||||||
|
sbcl-trivial-features
|
||||||
|
sbcl-trivial-gray-streams
|
||||||
|
sbcl-zippy))
|
||||||
|
;; TODO: Some 6 tests fail, why? See https://github.com/Shinmera/depot/issues/2.
|
||||||
|
(arguments
|
||||||
|
'(#:asd-systems '("depot"
|
||||||
|
"depot-in-memory"
|
||||||
|
"depot-virtual"
|
||||||
|
"depot-zip")))
|
||||||
|
(synopsis "Protocol for transparent collections of files")
|
||||||
|
(description "This is a system presenting a protocol for \"file
|
||||||
|
systems\": things that present a collection of \"files,\" which are things
|
||||||
|
that have several attributes, and a central data payload. Most notably this
|
||||||
|
includes the OS filesystem, but can also be used to address other
|
||||||
|
filesystem-like things like archives, object stores, etc. in the same
|
||||||
|
manner.")
|
||||||
|
(home-page "https://shinmera.github.io/depot/")
|
||||||
|
(license license:zlib))))
|
||||||
|
|
||||||
|
(define-public ecl-depot
|
||||||
|
(sbcl-package->ecl-package sbcl-depot))
|
||||||
|
|
||||||
|
(define-public cl-depot
|
||||||
|
(sbcl-package->cl-source-package sbcl-depot))
|
||||||
|
|
||||||
(define-public sbcl-cl-difflib
|
(define-public sbcl-cl-difflib
|
||||||
(let ((commit "98eb335c693f1881584b83ca7be4a0fe05355c4e")
|
(let ((commit "98eb335c693f1881584b83ca7be4a0fe05355c4e")
|
||||||
(revision "0"))
|
(revision "0"))
|
||||||
|
|
Loading…
Reference in a new issue