Loading pkgs/development/ocaml-modules/res/default.nix 0 → 100644 +24 −0 Original line number Diff line number Diff line { 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 ]; }; } pkgs/top-level/ocaml-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 Loading
pkgs/development/ocaml-modules/res/default.nix 0 → 100644 +24 −0 Original line number Diff line number Diff line { 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 ]; }; }
pkgs/top-level/ocaml-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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