about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/binning/default.nix
blob: 244b96220f7b22704d88e427424ae34c0690bf33 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 ];
  };
}