forked from mirrors/nixpkgs
ocamlPackages.vector: init at 1.0.0
This commit is contained in:
parent
55eac49843
commit
94aeee3af1
23
pkgs/development/ocaml-modules/vector/default.nix
Normal file
23
pkgs/development/ocaml-modules/vector/default.nix
Normal 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 ];
|
||||
};
|
||||
|
||||
}
|
|
@ -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…
Reference in a new issue