nixpkgs/pkgs/development/ocaml-modules/parany/default.nix

23 lines
566 B
Nix
Raw Normal View History

2019-11-25 20:43:05 +00:00
{ 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;
};
}