39 lines
758 B
Nix
39 lines
758 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
buildDunePackage,
|
|
base,
|
|
ppx_sexp_conv,
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "tdigest";
|
|
version = "2.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SGrondin";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-Z2rOaiNGvVDbRwf5XfoNIcenQdrE3fxHnfzyi6Ki2Ic=";
|
|
};
|
|
|
|
minimalOCamlVersion = "4.14";
|
|
|
|
# base v0.17 compatibility
|
|
patches = [ ./tdigest.patch ];
|
|
|
|
propagatedBuildInputs = [
|
|
base
|
|
ppx_sexp_conv
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/SGrondin/${pname}";
|
|
description = "OCaml implementation of the T-Digest algorithm";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ niols ];
|
|
};
|
|
}
|