mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add clojure-core-cache.
* gnu/packages/clojure.scm (clojure-core-cache): New variable.
This commit is contained in:
parent
80ba4b8ecb
commit
0487947e7d
1 changed files with 27 additions and 0 deletions
|
@ -318,6 +318,33 @@ defining and using monads and useful monadic functions.")
|
|||
(home-page "https://github.com/clojure/algo.monads")
|
||||
(license license:epl1.0)))
|
||||
|
||||
(define-public clojure-core-cache
|
||||
(package
|
||||
(name "clojure-core-cache")
|
||||
(version "1.1.234")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/clojure/core.cache")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0jiq022kd5jdpmxz884rvg5317xmx7g3gnidkpcfsamchyfh5qxq"))))
|
||||
(build-system clojure-build-system)
|
||||
(arguments
|
||||
'(#:source-dirs '("src/main/clojure")
|
||||
#:test-dirs '("src/test/clojure")
|
||||
#:doc-dirs '("docs")))
|
||||
(propagated-inputs (list clojure-data-priority-map))
|
||||
(synopsis "Clojure caching library")
|
||||
(description
|
||||
"Caching library for Clojure implementing various cache strategies such
|
||||
as First-in-first-out, Least-recently-used, Least-used, Time-to-live, Naive
|
||||
cache and Naive cache backed with soft references.")
|
||||
(home-page "https://github.com/clojure/core.cache")
|
||||
(license license:epl1.0)))
|
||||
|
||||
(define-public clojure-core-match
|
||||
(package
|
||||
(name "clojure-core-match")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue