ocamlPackages.bigstringaf: init at 0.3.0

Bigstring intrinsics and fast blits based on memcpy/memmove

homepage: https://github.com/inhabitedtype/bigstringaf
This commit is contained in:
Vincent Laporte 2018-07-22 06:11:39 +00:00 committed by Vincent Laporte
parent e46e7f44c2
commit 96b9fdaa35
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ stdenv, fetchFromGitHub, ocaml, findlib, jbuilder, alcotest }:
if !stdenv.lib.versionAtLeast ocaml.version "4.03"
then throw "bigstringaf is not available for OCaml ${ocaml.version}"
else
stdenv.mkDerivation rec {
version = "0.3.0";
name = "ocaml${ocaml.version}-bigstringaf-${version}";
src = fetchFromGitHub {
owner = "inhabitedtype";
repo = "bigstringaf";
rev = version;
sha256 = "1yx6hv8rk0ldz1h6kk00rwg8abpfc376z00aifl9f5rn7xavpscs";
};
buildInputs = [ ocaml findlib jbuilder alcotest ];
doCheck = true;
checkPhase = "dune runtest";
inherit (jbuilder) installPhase;
meta = {
description = "Bigstring intrinsics and fast blits based on memcpy/memmove";
license = stdenv.lib.licenses.bsd3;
maintainers = [ stdenv.lib.maintainers.vbgl ];
inherit (src.meta) homepage;
inherit (ocaml.meta) platforms;
};
}

View File

@ -71,6 +71,8 @@ let
batteries = callPackage ../development/ocaml-modules/batteries { };
bigstringaf = callPackage ../development/ocaml-modules/bigstringaf { };
bitstring = callPackage ../development/ocaml-modules/bitstring { };
bitv = callPackage ../development/ocaml-modules/bitv { };