nixos/manual: Must disable secure boot on UEFI installs (#364406)
[NixPkgs.git] / pkgs / development / ocaml-modules / parmap / default.nix
blob7babaab8b725a3b6c23ca09af086bab78f965b59
2   lib,
3   fetchFromGitHub,
4   buildDunePackage,
5   dune-configurator,
6 }:
8 buildDunePackage rec {
9   pname = "parmap";
10   version = "1.2.5";
12   src = fetchFromGitHub {
13     owner = "rdicosmo";
14     repo = pname;
15     rev = version;
16     hash = "sha256-tBu7TGtDOe5FbxLZuz6nl+65aN9FHIngq/O4dJWzr3Q=";
17   };
19   minimalOCamlVersion = "4.03";
21   buildInputs = [
22     dune-configurator
23   ];
25   doCheck = false; # prevent running slow benchmarks
27   meta = with lib; {
28     description = "Library for multicore parallel programming";
29     downloadPage = "https://github.com/rdicosmo/parmap";
30     homepage = "https://rdicosmo.github.io/parmap";
31     license = licenses.lgpl2;
32     maintainers = with maintainers; [ bcdarwin ];
33   };