summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/parmap
diff options
context:
space:
mode:
authorsuperherointj <5861043+superherointj@users.noreply.github.com>2021-06-05 21:07:19 -0300
committerVincent Laporte <vbgl@users.noreply.github.com>2021-06-13 11:28:08 +0200
commitbfde742b86160ac27362eeb39cbbdba1b2e1c832 (patch)
tree3c040c19969f8d985fd00f3ca026296bfa227fbc /pkgs/development/ocaml-modules/parmap
parent693fb7b0c11b8352fd16f2eb654ae41a7946197a (diff)
downloadnixpkgs-bfde742b86160ac27362eeb39cbbdba1b2e1c832.tar
nixpkgs-bfde742b86160ac27362eeb39cbbdba1b2e1c832.tar.gz
nixpkgs-bfde742b86160ac27362eeb39cbbdba1b2e1c832.tar.bz2
nixpkgs-bfde742b86160ac27362eeb39cbbdba1b2e1c832.tar.lz
nixpkgs-bfde742b86160ac27362eeb39cbbdba1b2e1c832.tar.xz
nixpkgs-bfde742b86160ac27362eeb39cbbdba1b2e1c832.tar.zst
nixpkgs-bfde742b86160ac27362eeb39cbbdba1b2e1c832.zip
ocamlPackages.parmap: 1.2 -> 1.2.3
Diffstat (limited to 'pkgs/development/ocaml-modules/parmap')
-rw-r--r--pkgs/development/ocaml-modules/parmap/default.nix18
1 files 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 ];
   };
 }