about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/parmap/default.nix
blob: 7adc8482b2321d494a4930c938250ff4b15e0a5a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, buildDunePackage, fetchurl, dune-configurator }:

buildDunePackage rec {
  pname = "parmap";
  version = "1.2";

  useDune2 = true;

  src = fetchurl {
    url = "https://github.com/rdicosmo/${pname}/releases/download/${version}/${pname}-${version}.tbz";
    sha256 = "sha256-XUXptzD0eytaypaBQ+EBp4iVFRE6/Y0inS93t/YZrM8=";
  };

  buildInputs = [ dune-configurator ];

  doCheck = true;

  meta = with lib; {
    description = "Library for multicore parallel programming";
    homepage = "https://rdicosmo.github.io/parmap";
    maintainers = [ maintainers.bcdarwin ];
    license = licenses.lgpl2;
  };
}