lol

ocamlPackages.res: init at 5.0.1

authored by

Trent Small and committed by
Vincent Laporte
9d6ec0c4 54c94cd3

+26
+24
pkgs/development/ocaml-modules/res/default.nix
··· 1 + { lib , fetchurl , buildDunePackage }: 2 + 3 + buildDunePackage rec { 4 + pname = "res"; 5 + version = "5.0.1"; 6 + 7 + minimalOCamlVersion = "4.08"; 8 + 9 + src = fetchurl { 10 + url = "https://github.com/mmottl/res/releases/download/${version}/res-${version}.tbz"; 11 + hash = "sha256-rSrDMQBfnbWAr2LuajP3fveOtOwLyRbKPkaTKsnocQ4="; 12 + }; 13 + 14 + doCheck = true; 15 + 16 + meta = { 17 + description = "Library for resizable, contiguous datastructures"; 18 + homepage = "https://github.com/mmottl/res"; 19 + changelog = "https://github.com/mmottl/res/blob/${version}/CHANGES.md"; 20 + license = lib.licenses.lgpl2Plus; 21 + maintainers = with lib.maintainers; [ sixstring982 ]; 22 + }; 23 + } 24 +
+2
pkgs/top-level/ocaml-packages.nix
··· 1608 1608 1609 1609 repr = callPackage ../development/ocaml-modules/repr { }; 1610 1610 1611 + res = callPackage ../development/ocaml-modules/res { }; 1612 + 1611 1613 resource-pooling = callPackage ../development/ocaml-modules/resource-pooling { }; 1612 1614 1613 1615 resto = callPackage ../development/ocaml-modules/resto { };