ocamlPackages.res: init at 5.0.1
This commit is contained in:
parent
54c94cd3aa
commit
9d6ec0c45a
2 changed files with 26 additions and 0 deletions
24
pkgs/development/ocaml-modules/res/default.nix
Normal file
24
pkgs/development/ocaml-modules/res/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ lib , fetchurl , buildDunePackage }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "res";
|
||||
version = "5.0.1";
|
||||
|
||||
minimalOCamlVersion = "4.08";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/mmottl/res/releases/download/${version}/res-${version}.tbz";
|
||||
hash = "sha256-rSrDMQBfnbWAr2LuajP3fveOtOwLyRbKPkaTKsnocQ4=";
|
||||
};
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
description = "Library for resizable, contiguous datastructures";
|
||||
homepage = "https://github.com/mmottl/res";
|
||||
changelog = "https://github.com/mmottl/res/blob/${version}/CHANGES.md";
|
||||
license = lib.licenses.lgpl2Plus;
|
||||
maintainers = with lib.maintainers; [ sixstring982 ];
|
||||
};
|
||||
}
|
||||
|
|
@ -1608,6 +1608,8 @@ let
|
|||
|
||||
repr = callPackage ../development/ocaml-modules/repr { };
|
||||
|
||||
res = callPackage ../development/ocaml-modules/res { };
|
||||
|
||||
resource-pooling = callPackage ../development/ocaml-modules/resource-pooling { };
|
||||
|
||||
resto = callPackage ../development/ocaml-modules/resto { };
|
||||
|
|
Loading…
Reference in a new issue