ocamlPackages.binning: init at 0.0.0

This commit is contained in:
Vincent Laporte 2024-04-23 08:50:01 +02:00
parent 2058f30118
commit 09e010c4d8
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ lib
, buildDunePackage
, fetchurl
}:
buildDunePackage rec {
pname = "binning";
version = "0.0.0";
minimalOCamlVersion = "4.08";
src = fetchurl {
url = "https://github.com/pveber/binning/releases/download/v${version}/binning-v${version}.tbz";
hash = "sha256-eG+xctsbc7lQ5pFOUtJ8rjNW/06gygwLADq7yc8Yf/c=";
};
meta = {
description = "A datastructure to accumulate values in bins";
license = lib.licenses.cecill-b;
homepage = "https://github.com/pveber/binning/";
maintainers = [ lib.maintainers.vbgl ];
};
}

View File

@ -88,6 +88,8 @@ let
biniou = callPackage ../development/ocaml-modules/biniou { };
binning = callPackage ../development/ocaml-modules/binning { };
biocaml = janeStreet_0_15.biocaml;
bisect_ppx = callPackage ../development/ocaml-modules/bisect_ppx { };