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