@@ -259,6 +259,36 @@ (define-public clojure-algo-monads
(home-page "https://github.com/clojure/algo.monads")
(license license:epl1.0)))
+(define-public clojure-core-async
+ (package
+ (name "clojure-core-async")
+ (version "1.5.648")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/clojure/core.async")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1any7bh5zsn6agia6y7al1gxnqa6s5g0y45gzy51rfjjccq33xq4"))))
+ (build-system clojure-build-system)
+ (arguments
+ '(#:source-dirs '("src/main/clojure")
+ #:test-dirs '("src/test/clojure")
+ #:doc-dirs '("doc")
+ #:aot-exclude '(cljs.core.async
+ cljs.core.async.macros
+ cljs.core.async.impl.ioc-macros)))
+ (propagated-inputs (list clojure-tools-analyzer-jvm))
+ (home-page "https://github.com/clojure/core.async")
+ (synopsis "Facilities for async programming and communication in Clojure")
+ (description "@{core.async} is a Clojure library providing facilities for
+async programming and communication in Clojure using communicating sequential
+processes. @{core.async} supports both multi-threaded and single-threaded
+environments.")
+ (license license:epl1.0)))
+
(define-public clojure-core-cache
(package
(name "clojure-core-cache")