Unverified Commit c6bcb7df authored by Vincent Laporte's avatar Vincent Laporte
Browse files

ocamlPackages.bstr: init at 0.0.2

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

buildDunePackage rec {
  pname = "bstr";
  version = "0.0.2";

  minimalOCamlVersion = "4.13";

  src = fetchurl {
    url = "https://github.com/robur-coop/bstr/releases/download/v${version}/bstr-${version}.tbz";
    hash = "sha256-/zvzCBzT014OesTmxGBDB98ZRU++YNDLUZ8uaDK3keM=";
  };

  meta = {
    description = "A simple library for bigstrings";
    homepage = "https://git.robur.coop/robur/bstr";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.vbgl ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -145,6 +145,8 @@ let

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

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

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

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