summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/functory/default.nix
blob: 18b5fb39776beda9076b3638398a4569bf8a7640 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ stdenv, fetchurl, ocaml, findlib }:

assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "3.11";

let param =
  if stdenv.lib.versionAtLeast ocaml.version "4.02" then {
    version = "0.6";
    sha256 = "18wpyxblz9jh5bfp0hpffnd0q8cq1b0dqp0f36vhqydfknlnpx8y";
  } else {
    version = "0.5";
    sha256 = "1j17rhifdjv1z262dma148ywg34x0zjn8vczdrnkwajsm4qg1hw3";
  };
in

stdenv.mkDerivation {

  name = "ocaml${ocaml.version}-functory-${param.version}";

  src = fetchurl {
    url = "https://www.lri.fr/~filliatr/functory/download/functory-${param.version}.tar.gz";
    inherit (param) sha256;
  };

  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;
    maintainers = [ maintainers.vbgl ];
    platforms = ocaml.meta.platforms or [];
  };
}