ocamlPackages.vector: init at 1.0.0

main
Vincent Laporte 2 years ago
parent 55eac49843
commit 94aeee3af1
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F
  1. 23
      pkgs/development/ocaml-modules/vector/default.nix
  2. 2
      pkgs/top-level/ocaml-packages.nix

@ -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 ];
};
}

@ -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 { };

Loading…
Cancel
Save