From bfde742b86160ac27362eeb39cbbdba1b2e1c832 Mon Sep 17 00:00:00 2001 From: superherointj <5861043+superherointj@users.noreply.github.com> Date: Sat, 5 Jun 2021 21:07:19 -0300 Subject: [PATCH] ocamlPackages.parmap: 1.2 -> 1.2.3 --- .../ocaml-modules/parmap/default.nix | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/pkgs/development/ocaml-modules/parmap/default.nix b/pkgs/development/ocaml-modules/parmap/default.nix index 7adc8482b23..d79999087dd 100644 --- a/pkgs/development/ocaml-modules/parmap/default.nix +++ b/pkgs/development/ocaml-modules/parmap/default.nix @@ -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 ]; }; }