Skip to content

Commit

Permalink
ocamlPackages.parany: init at 7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bcdarwin committed Nov 29, 2019
1 parent eb1efb7 commit 06ddb4a
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pkgs/development/ocaml-modules/parany/default.nix
@@ -0,0 +1,22 @@
{ stdenv, buildDunePackage, fetchFromGitHub, ocamlnet, setcore }:

buildDunePackage rec {
pname = "parany";
version = "7.0.0";

src = fetchFromGitHub {
owner = "UnixJunkie";
repo = pname;
rev = "v${version}";
sha256 = "0kylhgi1d4gj68x40ifli7pnrxkdc6ks5mgfvlcsigqg8i8nvc7q";
};

propagatedBuildInputs = [ ocamlnet setcore ];

meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "Generalized map/reduce for multicore computing";
maintainers = [ maintainers.bcdarwin ];
license = licenses.lgpl2;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/ocaml-packages.nix
Expand Up @@ -688,6 +688,8 @@ let

pa_test = callPackage ../development/ocaml-modules/pa_test { };

parany = callPackage ../development/ocaml-modules/parany { };

pipebang = callPackage ../development/ocaml-modules/pipebang { };

pprint = callPackage ../development/ocaml-modules/pprint { };
Expand Down

0 comments on commit 06ddb4a

Please sign in to comment.