ocamlPackages.parmap: init at 1.1
This commit is contained in:
parent
5660c077df
commit
00cd1d0f21
20
pkgs/development/ocaml-modules/parmap/default.nix
Normal file
20
pkgs/development/ocaml-modules/parmap/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -562,6 +562,8 @@ let
|
|||||||
then callPackage ../development/ocaml-modules/num {}
|
then callPackage ../development/ocaml-modules/num {}
|
||||||
else null;
|
else null;
|
||||||
|
|
||||||
|
parmap = callPackage ../development/ocaml-modules/parmap { };
|
||||||
|
|
||||||
comparelib = callPackage ../development/ocaml-modules/comparelib { };
|
comparelib = callPackage ../development/ocaml-modules/comparelib { };
|
||||||
|
|
||||||
core_extended_p4 = callPackage ../development/ocaml-modules/core_extended { };
|
core_extended_p4 = callPackage ../development/ocaml-modules/core_extended { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user