ocamlPackages.parmap: 1.2.4 → 1.2.5

This commit is contained in:
Vincent Laporte 2023-06-13 06:25:04 +02:00
parent 202850e1a1
commit eb464f2771
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F

View File

@ -1,12 +1,14 @@
{ lib, fetchurl, buildDunePackage, dune-configurator }:
{ lib, fetchFromGitHub, buildDunePackage, dune-configurator }:
buildDunePackage rec {
pname = "parmap";
version = "1.2.4";
version = "1.2.5";
src = fetchurl {
url = "https://github.com/rdicosmo/${pname}/releases/download/${version}/${pname}-${version}.tbz";
sha256 = "sha256-BTkSEjIK3CVNloJACFo6eQ6Ob9o/cdrA9xuv87NKas4=";
src = fetchFromGitHub {
owner = "rdicosmo";
repo = pname;
rev = version;
hash = "sha256-tBu7TGtDOe5FbxLZuz6nl+65aN9FHIngq/O4dJWzr3Q=";
};
minimalOCamlVersion = "4.03";