diff --git a/pkgs/development/ocaml-modules/thread-table/default.nix b/pkgs/development/ocaml-modules/thread-table/default.nix new file mode 100644 index 000000000000..497572c4f413 --- /dev/null +++ b/pkgs/development/ocaml-modules/thread-table/default.nix @@ -0,0 +1,37 @@ +{ lib +, fetchurl +, buildDunePackage +, alcotest +, mdx +}: + +buildDunePackage rec { + pname = "thread-table"; + version = "0.1.0"; + + minimalOCamlVersion = "4.08"; + + src = fetchurl { + url = "https://github.com/ocaml-multicore/${pname}/releases/download/${version}/${pname}-${version}.tbz"; + sha256 = "d84BwC9W5udWJgYuaQwmA1e2d6uk0v210M7nK72VjXs="; + }; + + doCheck = true; + + checkInputs = [ + alcotest + mdx + ]; + + nativeCheckInputs = [ + mdx.bin + ]; + + meta = { + homepage = "https://github.com/ocaml-multicore/ocaml-${pname}"; + changelog = "https://github.com/ocaml-multicore/ocaml-${pname}/raw/${version}/CHANGES.md"; + description = "A lock-free thread-safe integer keyed hash table"; + license = with lib.licenses; [ isc ]; + maintainers = with lib.maintainers; [ toastal ]; + }; +} diff --git a/pkgs/top-level/ocaml-packages.nix b/pkgs/top-level/ocaml-packages.nix index afc1a1524dcc..11547ffad976 100644 --- a/pkgs/top-level/ocaml-packages.nix +++ b/pkgs/top-level/ocaml-packages.nix @@ -1603,6 +1603,8 @@ let theora = callPackage ../development/ocaml-modules/theora { }; + thread-table = callPackage ../development/ocaml-modules/thread-table { }; + timed = callPackage ../development/ocaml-modules/timed { }; tiny_httpd = callPackage ../development/ocaml-modules/tiny_httpd { };