ocamlPackages.tdigest: init at 2.1.1

This commit is contained in:
Niols 2023-06-06 14:09:06 +02:00 committed by Vincent Laporte
parent 0b33d24a1c
commit 15c2e24dc8
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ lib, fetchFromGitHub, buildDunePackage
, core
}:
buildDunePackage rec {
pname = "tdigest";
version = "2.1.1";
src = fetchFromGitHub {
owner = "SGrondin";
repo = pname;
rev = version;
sha256 = "sha256-R1uaCN/6NiW+jdGQiflwfihaidngvaWjJM7UFyR4vxs=";
};
minimalOCamlVersion = "4.08";
propagatedBuildInputs = [
core
];
meta = with lib; {
homepage = "https://github.com/SGrondin/${pname}";
description = "OCaml implementation of the T-Digest algorithm";
license = licenses.mit;
maintainers = with maintainers; [ niols ];
};
}

View File

@ -1581,6 +1581,8 @@ let
tcslib = callPackage ../development/ocaml-modules/tcslib { };
tdigest = callPackage ../development/ocaml-modules/tdigest { };
telegraml = callPackage ../development/ocaml-modules/telegraml { };
terminal = callPackage ../development/ocaml-modules/terminal { };