1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 19:10:49 +02:00

gnu: clojure-core-match: Update to 1.0.0.

* gnu/packages/clojure.scm (clojure-core-match): Update to 1.0.0.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
r0man 2022-07-16 20:24:25 +02:00 committed by Ludovic Courtès
parent 884c87a100
commit f65270c799
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -320,31 +320,29 @@ defining and using monads and useful monadic functions.")
(license license:epl1.0))) (license license:epl1.0)))
(define-public clojure-core-match (define-public clojure-core-match
(let ((commit "1837ffbd4a150e8f3953b2d9ed5cf4a4ad3720a7") (package
(revision "1")) ; this is the 1st commit buildable with clojure 1.9 (name "clojure-core-match")
(package (version "1.0.0")
(name "clojure-core-match") (source (origin
(version (git-version "0.3.0-alpha5" revision commit)) (method git-fetch)
(source (origin (uri (git-reference
(method git-fetch) (url "https://github.com/clojure/core.match")
(uri (git-reference (commit (string-append "core.match-" version))))
(url "https://github.com/clojure/core.match") (file-name (git-file-name name version))
(commit commit))) (sha256
(file-name (git-file-name name version)) (base32
(sha256 "0ajpxjv4yc282cm0jw8819fay2j6jqp9nfy69k7vll09q7vqsd22"))))
(base32 (build-system clojure-build-system)
"04bdlp5dgkrqzrz0lw3mfwmygj2218qnm1cz3dkb9wy4m0238s4d")))) (arguments
(build-system clojure-build-system) '(#:source-dirs '("src/main/clojure")
(arguments #:test-dirs '("src/test/clojure")
'(#:source-dirs '("src/main/clojure") #:doc-dirs '()))
#:test-dirs '("src/test/clojure") (synopsis "Optimized pattern matching for Clojure")
#:doc-dirs '())) (description
(synopsis "Optimized pattern matching for Clojure") "An optimized pattern matching library for Clojure.
(description
"An optimized pattern matching library for Clojure.
It supports Clojure 1.5.1 and later as well as ClojureScript.") It supports Clojure 1.5.1 and later as well as ClojureScript.")
(home-page "https://github.com/clojure/core.match") (home-page "https://github.com/clojure/core.match")
(license license:epl1.0)))) (license license:epl1.0)))
(define-public clojure-data-codec (define-public clojure-data-codec
(package (package