ocamlPackages.parmap: init at 1.1

This commit is contained in:
Ben Darwin 2019-11-24 14:10:26 -05:00 committed by Vincent Laporte
parent 5660c077df
commit 00cd1d0f21
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ lib, buildDunePackage, fetchzip }:
buildDunePackage rec {
pname = "parmap";
version = "1.1";
src = fetchzip {
url = "https://github.com/rdicosmo/${pname}/releases/download/${version}/${pname}-${version}.tbz";
sha256 = "13ahqaga1palf0s0dll512cl7k43sllmwvw6r03y70kfmky1j114";
};
doCheck = true;
meta = with lib; {
description = "Library for multicore parallel programming";
homepage = "https://rdicosmo.github.io/parmap";
maintainers = [ maintainers.bcdarwin ];
license = licenses.lgpl2;
};
}

View File

@ -562,6 +562,8 @@ let
then callPackage ../development/ocaml-modules/num {}
else null;
parmap = callPackage ../development/ocaml-modules/parmap { };
comparelib = callPackage ../development/ocaml-modules/comparelib { };
core_extended_p4 = callPackage ../development/ocaml-modules/core_extended { };