aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/tools/ocaml/ocamlify/default.nix
blob: 42faa33fbe1cf35a02c77a248f147758ad374738 (plain)
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
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild }:

stdenv.mkDerivation {
  name = "ocamlify-0.0.2";

  src = fetchurl {
    url = "http://forge.ocamlcore.org/frs/download.php/1209/ocamlify-0.0.2.tar.gz";
    sha256 = "1f0fghvlbfryf5h3j4as7vcqrgfjb4c8abl5y0y5h069vs4kp5ii";
  };

  buildInputs = [ ocaml findlib ocamlbuild ];

  configurePhase = ''
    substituteInPlace src/ocamlify.ml --replace 'OCamlifyConfig.version' '"0.0.2"'
  '';

  buildPhase = "ocamlbuild src/ocamlify.native";

  installPhase = ''
    mkdir -p $out/bin
    mv _build/src/ocamlify.native $out/bin/ocamlify
  '';

  dontStrip = true;

  meta = {
    homepage = "http://forge.ocamlcore.org/projects/ocamlmod/ocamlmod";
    description = "Generate OCaml modules from source files";
    platforms = ocaml.meta.platforms or [];
    license = stdenv.lib.licenses.lgpl21;
    maintainers = with stdenv.lib.maintainers; [
      maggesi
    ];
  };
}