ocamlPackages.vector: init at 1.0.0

This commit is contained in:
Vincent Laporte 2022-01-14 15:43:00 +01:00
parent 55eac49843
commit 94aeee3af1
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, buildDunePackage, fetchurl }:
buildDunePackage rec {
pname = "vector";
version = "1.0.0";
useDune2 = true;
src = fetchurl {
url = "https://github.com/backtracking/vector/releases/download/${version}/vector-${version}.tbz";
sha256 = "sha256:0hb6prpada4c5z07sxf5ayj5xbahsnwall15vaqdwdyfjgbd24pj";
};
doCheck = true;
meta = {
description = "Resizable arrays for OCaml";
license = lib.licenses.lgpl2Only;
homepage = "https://github.com/backtracking/vector";
maintainers = [ lib.maintainers.vbgl ];
};
}

View file

@ -1374,6 +1374,8 @@ let
vchan = callPackage ../development/ocaml-modules/vchan { };
vector = callPackage ../development/ocaml-modules/vector { };
vg = callPackage ../development/ocaml-modules/vg { };
vlq = callPackage ../development/ocaml-modules/vlq { };