gphoto2: remove patch already applied upstream (#380232)
[NixPkgs.git] / pkgs / development / ocaml-modules / binning / default.nix
blobe97db4daddaee5528c9fca681d79e6771dc0858c
2   lib,
3   buildDunePackage,
4   fetchurl,
5 }:
7 buildDunePackage rec {
8   pname = "binning";
9   version = "0.0.0";
11   minimalOCamlVersion = "4.08";
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   };
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   };