summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/http/default.nix
blob: 4a8b390633612f42aef5b3fd852530c28c28f394 (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
38
39
{stdenv, fetchurl, ocaml_pcre, ocamlnet, ocaml, findlib, camlp4}:

if stdenv.lib.versionAtLeast ocaml.version "4.06"
then throw "ocaml-http is not available for OCaml ${ocaml.version}"
else

stdenv.mkDerivation {
  name = "ocaml-http-0.1.5";

  src = fetchurl {
    url = https://forge.ocamlcore.org/frs/download.php/545/ocaml-http-0.1.5.tar.gz;
    sha256 = "09q12b0j01iymflssxigsqggbsp8dqh9pfvkm76dv860544mygws";
  };

  buildInputs = [ocaml findlib camlp4];
  propagatedBuildInputs = [ocaml_pcre ocamlnet];

  createFindlibDestdir = true;

  prePatch = ''
    BASH=$(type -tp bash)
    echo $BASH
    substituteInPlace Makefile --replace "SHELL=/bin/bash" "SHELL=$BASH"
  '';

  dontConfigure = true;	# Skip configure phase

  buildPhase = ''
    make all opt
  '';

  meta = with stdenv.lib; {
    homepage = http://ocaml-http.forge.ocamlcore.org/;
    platforms = ocaml.meta.platforms or [];
    description = "Do it yourself (OCaml) HTTP daemon";
    license = licenses.lgpl2;
    maintainers = with maintainers; [ roconnor vbgl ];
  };
}