ocamlPackages.parmap: 1.2 -> 1.2.3

This commit is contained in:
superherointj 2021-06-05 21:07:19 -03:00 committed by Vincent Laporte
parent 693fb7b0c1
commit bfde742b86

View file

@ -1,24 +1,28 @@
{ lib, buildDunePackage, fetchurl, dune-configurator }:
{ lib, fetchurl, buildDunePackage, dune-configurator }:
buildDunePackage rec {
pname = "parmap";
version = "1.2";
useDune2 = true;
version = "1.2.3";
src = fetchurl {
url = "https://github.com/rdicosmo/${pname}/releases/download/${version}/${pname}-${version}.tbz";
sha256 = "sha256-XUXptzD0eytaypaBQ+EBp4iVFRE6/Y0inS93t/YZrM8=";
sha256 = "1wg81slp453jci0gi0rzvdjx74110mlf1n5qpsmxic6fqsyz9d2v";
};
buildInputs = [ dune-configurator ];
minimalOCamlVersion = "4.03";
useDune2 = true;
buildInputs = [
dune-configurator
];
doCheck = true;
meta = with lib; {
description = "Library for multicore parallel programming";
downloadPage = "https://github.com/rdicosmo/parmap";
homepage = "https://rdicosmo.github.io/parmap";
maintainers = [ maintainers.bcdarwin ];
license = licenses.lgpl2;
maintainers = with maintainers; [ bcdarwin ];
};
}