Commit 9d6ec0c4 authored by Trent Small's avatar Trent Small Committed by Vincent Laporte
Browse files

ocamlPackages.res: init at 5.0.1

parent 54c94cd3
Loading
Loading
Loading
Loading
+24 −0
Original line number Diff line number Diff line
{ lib , fetchurl , buildDunePackage }:

buildDunePackage rec {
  pname = "res";
  version = "5.0.1";

  minimalOCamlVersion = "4.08";

  src = fetchurl {
    url = "https://github.com/mmottl/res/releases/download/${version}/res-${version}.tbz";
    hash = "sha256-rSrDMQBfnbWAr2LuajP3fveOtOwLyRbKPkaTKsnocQ4=";
  };

  doCheck = true;

  meta = {
    description = "Library for resizable, contiguous datastructures";
    homepage = "https://github.com/mmottl/res";
    changelog = "https://github.com/mmottl/res/blob/${version}/CHANGES.md";
    license = lib.licenses.lgpl2Plus;
    maintainers = with lib.maintainers; [ sixstring982 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -1608,6 +1608,8 @@ let

    repr = callPackage ../development/ocaml-modules/repr { };

    res = callPackage ../development/ocaml-modules/res { };

    resource-pooling = callPackage ../development/ocaml-modules/resource-pooling { };

    resto = callPackage ../development/ocaml-modules/resto { };