nixpkgs/pkgs/development/ocaml-modules/parmap/default.nix

21 lines
537 B
Nix
Raw Normal View History

2020-03-14 14:45:15 +00:00
{ lib, buildDunePackage, fetchurl }:
2019-11-24 19:10:26 +00:00
buildDunePackage rec {
pname = "parmap";
2020-03-14 14:45:15 +00:00
version = "1.1.1";
2019-11-24 19:10:26 +00:00
2020-03-14 14:45:15 +00:00
src = fetchurl {
2019-11-24 19:10:26 +00:00
url = "https://github.com/rdicosmo/${pname}/releases/download/${version}/${pname}-${version}.tbz";
2020-03-14 14:45:15 +00:00
sha256 = "1pci7b1jqxkgmrbhr0p5j98i4van5nfmmb3sak8cyvxhwgna93j4";
2019-11-24 19:10:26 +00:00
};
doCheck = true;
meta = with lib; {
description = "Library for multicore parallel programming";
homepage = "https://rdicosmo.github.io/parmap";
maintainers = [ maintainers.bcdarwin ];
license = licenses.lgpl2;
};
}