Skip to content

Commit

Permalink
ocamlPackages.parmap: init at 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bcdarwin committed Feb 4, 2020
1 parent 3931b82 commit ce443cc
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pkgs/development/ocaml-modules/parmap/default.nix
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/ocaml-packages.nix
Expand Up @@ -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 { };
Expand Down

0 comments on commit ce443cc

Please sign in to comment.