ocamlPackages.tdigest: init at 2.1.1
This commit is contained in:
parent
0b33d24a1c
commit
15c2e24dc8
28
pkgs/development/ocaml-modules/tdigest/default.nix
Normal file
28
pkgs/development/ocaml-modules/tdigest/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user