nixpkgs/pkgs/development/ocaml-modules/tdigest/default.nix
2024-08-08 21:38:40 +02:00

37 lines
748 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 ];
};
}