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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
702 B
Nix
Raw Normal View History

2023-06-13 04:25:04 +00:00
{ lib, fetchFromGitHub, buildDunePackage, dune-configurator }:
2019-11-24 19:10:26 +00:00
buildDunePackage rec {
pname = "parmap";
2023-06-13 04:25:04 +00:00
version = "1.2.5";
2021-04-05 14:02:51 +00:00
2023-06-13 04:25:04 +00:00
src = fetchFromGitHub {
owner = "rdicosmo";
repo = pname;
rev = version;
hash = "sha256-tBu7TGtDOe5FbxLZuz6nl+65aN9FHIngq/O4dJWzr3Q=";
2019-11-24 19:10:26 +00:00
};
2021-06-06 00:07:19 +00:00
minimalOCamlVersion = "4.03";
buildInputs = [
dune-configurator
];
2021-04-05 14:02:51 +00:00
2022-05-28 12:10:41 +00:00
doCheck = false; # prevent running slow benchmarks
2019-11-24 19:10:26 +00:00
meta = with lib; {
description = "Library for multicore parallel programming";
2021-06-06 00:07:19 +00:00
downloadPage = "https://github.com/rdicosmo/parmap";
2019-11-24 19:10:26 +00:00
homepage = "https://rdicosmo.github.io/parmap";
license = licenses.lgpl2;
2021-06-06 00:07:19 +00:00
maintainers = with maintainers; [ bcdarwin ];
2019-11-24 19:10:26 +00:00
};
}