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/functory/default.nix

27 lines
699 B

{stdenv, fetchurl, ocaml, findlib}:
stdenv.mkDerivation {
name = "ocaml-functory-0.5";
src = fetchurl {
url = https://www.lri.fr/~filliatr/functory/download/functory-0.5.tar.gz;
sha256 = "1j17rhifdjv1z262dma148ywg34x0zjn8vczdrnkwajsm4qg1hw3";
};
buildInputs = [ ocaml findlib ];
installTargets = "ocamlfind-install";
createFindlibDestdir = true;
meta = with stdenv.lib; {
homepage = https://www.lri.fr/~filliatr/functory/;
description = "A distributed computing library for Objective Caml which facilitates distributed execution of parallelizable computations in a seamless fashion";
license = licenses.lgpl21;
platforms = ocaml.meta.platforms;
};
}