python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / parany / default.nix
blob4f072391deb0c5126fbd049f5113206061bf62b3
1 { lib, buildDunePackage, fetchFromGitHub, ocamlnet, cpu }:
3 buildDunePackage rec {
4   pname = "parany";
5   version = "12.1.2";
7   useDune2 = true;
8   minimumOCamlVersion = "4.03.0";
10   src = fetchFromGitHub {
11     owner = "UnixJunkie";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "yOeJzb2Wr6jA4efI9/fuqDCl/Tza3zxT3YjAiJmhHHg=";
15   };
17   propagatedBuildInputs = [ ocamlnet cpu ];
19   meta = with lib; {
20     inherit (src.meta) homepage;
21     description = "Generalized map/reduce for multicore computing";
22     maintainers = [ maintainers.bcdarwin ];
23     license = licenses.lgpl2;
24   };