evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / binning / default.nix
blobbf448970ef616a23b3c9e84c5175cf23aab457d7
1 { lib
2 , buildDunePackage
3 , fetchurl
4 }:
6 buildDunePackage rec {
7   pname = "binning";
8   version = "0.0.0";
10   minimalOCamlVersion = "4.08";
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   };
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   };