[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#53765] [PATCH v3 01/17] gnu: Add clojure-data-priority-map.
From: |
Reily Siegel |
Subject: |
[bug#53765] [PATCH v3 01/17] gnu: Add clojure-data-priority-map. |
Date: |
Wed, 06 Apr 2022 12:41:35 -0000 |
---
gnu/packages/clojure.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/clojure.scm b/gnu/packages/clojure.scm
index e6eb749501..44c85b9ef2 100644
--- a/gnu/packages/clojure.scm
+++ b/gnu/packages/clojure.scm
@@ -315,6 +315,36 @@ (define-public clojure-data-codec
is on par with Java implementations, e.g., Apache commons-codec.")
(license license:epl1.0)))
+(define-public clojure-data-priority-map
+ (package
+ (name "clojure-data-priority-map")
+ (version "1.1.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/clojure/data.priority-map";)
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1i6mf59g2l3vamris869mndy9l1bp5mzfqv5gj5qzzb937iiykm0"))))
+ (build-system clojure-build-system)
+ (arguments
+ '(#:source-dirs '("src/main/clojure")
+ #:test-dirs '("src/test/clojure")
+ #:doc-dirs '()))
+ (home-page "https://github.com/clojure/data.priority-map";)
+ (synopsis "Clojure library implementing priority maps")
+ (description "A priority map is very similar to a sorted map, but whereas
+a sorted map produces a sequence of the entries sorted by key, a priority map
+produces the entries sorted by value.
+
+In addition to supporting all the functions a sorted map supports, a priority
+map can also be thought of as a queue of @code{[item priority]} pairs. To
+support usage as a versatile priority queue, priority maps also support
+insert/peek/pop operations.")
+ (license license:epl1.0)))
+
(define-public clojure-data-xml
(package
(name "clojure-data-xml")
--
2.35.1
- [bug#53765] [PATCH v3 00/17] Remove limitations on clojure-tools, Reily Siegel, 2022/04/06
- [bug#53765] [PATCH v3 06/17] gnu: Add clojure-http-kit., Reily Siegel, 2022/04/06
- [bug#53765] [PATCH v3 03/17] gnu: Add java-eclipse-jetty-client., Reily Siegel, 2022/04/06
- [bug#53765] [PATCH v3 04/17] gnu: Add clojure-core-cache., Reily Siegel, 2022/04/06
- [bug#53765] [PATCH v3 02/17] gnu: Add clojure-data-json., Reily Siegel, 2022/04/06
- [bug#53765] [PATCH v3 05/17] gnu: Add clojure-core-memoize., Reily Siegel, 2022/04/06
- [bug#53765] [PATCH v3 01/17] gnu: Add clojure-data-priority-map.,
Reily Siegel <=
- [bug#53765] [PATCH v3 09/17] gnu: Add clojure-tools-reader., Reily Siegel, 2022/04/06
- [bug#53765] [PATCH v3 13/17] gnu: Add clojure-com-cognitect-aws-api., Reily Siegel, 2022/04/06
- [bug#53765] [PATCH v3 08/17] gnu: Add clojure-tools-analyzer-jvm., Reily Siegel, 2022/04/06
- [bug#53765] [PATCH v3 10/17] gnu: Add clojure-tools-logging., Reily Siegel, 2022/04/06
- [bug#53765] [PATCH v3 16/17] gnu: clojure-tools-deps-alpha: Fix issues with S3, Reily Siegel, 2022/04/06
- [bug#53765] [PATCH v3 11/17] gnu: Add clojure-core-async., Reily Siegel, 2022/04/06
- [bug#53765] [PATCH v3 14/17] gnu: Add clojure-com-cognitect-aws-endpoints., Reily Siegel, 2022/04/06
- [bug#53765] [PATCH v3 07/17] gnu: Add clojure-tools-analyzer., Reily Siegel, 2022/04/06
- [bug#53765] [PATCH v3 12/17] gnu: Add clojure-com-cognitect-http-client., Reily Siegel, 2022/04/06
- [bug#53765] [PATCH v3 15/17] gnu: Add clojure-com-cognitect-aws-s3., Reily Siegel, 2022/04/06