My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/ocaml-modules/parmap/default.nix

28 lines
716 B

{ lib, fetchurl, buildDunePackage, dune-configurator }:
buildDunePackage rec {
pname = "parmap";
version = "1.2.4";
src = fetchurl {
url = "https://github.com/rdicosmo/${pname}/releases/download/${version}/${pname}-${version}.tbz";
sha256 = "sha256-BTkSEjIK3CVNloJACFo6eQ6Ob9o/cdrA9xuv87NKas4=";
};
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";
license = licenses.lgpl2;
maintainers = with maintainers; [ bcdarwin ];
};
}