ocamlPackages.tdigest: init at 2.1.1

authored by

Niols and committed by
Vincent Laporte
15c2e24d 0b33d24a

+30
+28
pkgs/development/ocaml-modules/tdigest/default.nix
···
··· 1 + { lib, fetchFromGitHub, buildDunePackage 2 + , core 3 + }: 4 + 5 + buildDunePackage rec { 6 + pname = "tdigest"; 7 + version = "2.1.1"; 8 + 9 + src = fetchFromGitHub { 10 + owner = "SGrondin"; 11 + repo = pname; 12 + rev = version; 13 + sha256 = "sha256-R1uaCN/6NiW+jdGQiflwfihaidngvaWjJM7UFyR4vxs="; 14 + }; 15 + 16 + minimalOCamlVersion = "4.08"; 17 + 18 + propagatedBuildInputs = [ 19 + core 20 + ]; 21 + 22 + meta = with lib; { 23 + homepage = "https://github.com/SGrondin/${pname}"; 24 + description = "OCaml implementation of the T-Digest algorithm"; 25 + license = licenses.mit; 26 + maintainers = with maintainers; [ niols ]; 27 + }; 28 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 1581 1582 tcslib = callPackage ../development/ocaml-modules/tcslib { }; 1583 1584 telegraml = callPackage ../development/ocaml-modules/telegraml { }; 1585 1586 terminal = callPackage ../development/ocaml-modules/terminal { };
··· 1581 1582 tcslib = callPackage ../development/ocaml-modules/tcslib { }; 1583 1584 + tdigest = callPackage ../development/ocaml-modules/tdigest { }; 1585 + 1586 telegraml = callPackage ../development/ocaml-modules/telegraml { }; 1587 1588 terminal = callPackage ../development/ocaml-modules/terminal { };