1{
2 lib,
3 buildDunePackage,
4 fetchurl,
5}:
6
7buildDunePackage rec {
8 pname = "binning";
9 version = "0.0.0";
10
11 minimalOCamlVersion = "4.08";
12
13 src = fetchurl {
14 url = "https://github.com/pveber/binning/releases/download/v${version}/binning-v${version}.tbz";
15 hash = "sha256-eG+xctsbc7lQ5pFOUtJ8rjNW/06gygwLADq7yc8Yf/c=";
16 };
17
18 meta = {
19 description = "Datastructure to accumulate values in bins";
20 license = lib.licenses.cecill-b;
21 homepage = "https://github.com/pveber/binning/";
22 maintainers = [ lib.maintainers.vbgl ];
23 };
24}