[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/14: gnu: Add quantile-estimator.
From: |
guix-commits |
Subject: |
02/14: gnu: Add quantile-estimator. |
Date: |
Fri, 5 Jun 2020 09:48:15 -0400 (EDT) |
glv pushed a commit to branch master
in repository guix.
commit b2eae0e1427502b171347fb173bab2547560a707
Author: Katherine Cox-Buday <cox.katherine.e@gmail.com>
AuthorDate: Mon Jun 1 17:41:40 2020 -0500
gnu: Add quantile-estimator.
* gnu/packages/lisp-xyz.scm (sbcl-quantile-estimator,
ecl-quantile-estimator,
cl-quantile-estimator): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
---
gnu/packages/lisp-xyz.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index b78eec7..df0424e 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -11555,3 +11555,37 @@ accompaniment to the standard ANSI facilities.")
(define-public cl-osicat
(sbcl-package->cl-source-package sbcl-osicat))
+
+(define-public sbcl-quantile-estimator
+ (package
+ (name "sbcl-quantile-estimator")
+ (version "0.0.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/deadtrickster/quantile-estimator.cl")
+ (commit "84d0ea405d793f5e808c68c4ddaf25417b0ff8e5")))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0rlswkf0siaabsvvch3dgxmg45fw5w8pd9b7ri2w7a298aya52z9"))))
+ (build-system asdf-build-system/sbcl)
+ (arguments
+ '(#:asd-system-name "quantile-estimator"))
+ (inputs
+ `(("alexandria" ,sbcl-alexandria)))
+ (home-page "https://github.com/deadtrickster/quantile-estimator.cl")
+ (synopsis
+ "Effective computation of biased quantiles over data streams")
+ (description
+ "Common Lisp implementation of Graham Cormode and S.
+Muthukrishnan's Effective Computation of Biased Quantiles over Data
+Streams in ICDE’05.")
+ (license license:expat)))
+
+(define-public cl-quantile-estimator
+ (sbcl-package->cl-source-package sbcl-quantile-estimator))
+
+(define-public ecl-quantile-estimator
+ (sbcl-package->ecl-package sbcl-quantile-estimator))
- branch master updated (66294d7 -> 1f9999d), guix-commits, 2020/06/05
- 02/14: gnu: Add quantile-estimator.,
guix-commits <=
- 05/14: gnu: Add cl-prometheus.collectors.process., guix-commits, 2020/06/05
- 06/14: gnu: Add cl-prometheus.formats.text., guix-commits, 2020/06/05
- 01/14: gnu: txr: Update to 239., guix-commits, 2020/06/05
- 03/14: gnu: Add cl-prometheus., guix-commits, 2020/06/05
- 04/14: gnu: Add cl-prometheus.collectors.sbcl., guix-commits, 2020/06/05
- 07/14: gnu: Add cl-prometheus.exposers.hunchentoot., guix-commits, 2020/06/05
- 08/14: gnu: Add cl-prometheus.pushgateway., guix-commits, 2020/06/05
- 10/14: gnu: Add cl-dissect., guix-commits, 2020/06/05
- 12/14: gnu: Add cl-exponential-backoff., guix-commits, 2020/06/05
- 13/14: gnu: Add cl-sxql., guix-commits, 2020/06/05