ocamlPackages.binning: init at 0.0.0
This commit is contained in:
parent
2058f30118
commit
09e010c4d8
2 changed files with 25 additions and 0 deletions
23
pkgs/development/ocaml-modules/binning/default.nix
Normal file
23
pkgs/development/ocaml-modules/binning/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue