mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-25 05:23:54 +00:00
ocamlPackages.parany: init at 7.0.0
This commit is contained in:
parent
eb1efb718c
commit
06ddb4a49f
22
pkgs/development/ocaml-modules/parany/default.nix
Normal file
22
pkgs/development/ocaml-modules/parany/default.nix
Normal file
@ -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;
|
||||||
|
};
|
||||||
|
}
|
@ -688,6 +688,8 @@ let
|
|||||||
|
|
||||||
pa_test = callPackage ../development/ocaml-modules/pa_test { };
|
pa_test = callPackage ../development/ocaml-modules/pa_test { };
|
||||||
|
|
||||||
|
parany = callPackage ../development/ocaml-modules/parany { };
|
||||||
|
|
||||||
pipebang = callPackage ../development/ocaml-modules/pipebang { };
|
pipebang = callPackage ../development/ocaml-modules/pipebang { };
|
||||||
|
|
||||||
pprint = callPackage ../development/ocaml-modules/pprint { };
|
pprint = callPackage ../development/ocaml-modules/pprint { };
|
||||||
|
Loading…
Reference in New Issue
Block a user