fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchurl, ocaml, findlib, ocamlbuild }:
2
3stdenv.mkDerivation {
4 name = "ocamlify-0.0.2";
5
6 src = fetchurl {
7 url = http://forge.ocamlcore.org/frs/download.php/1209/ocamlify-0.0.2.tar.gz;
8 sha256 = "1f0fghvlbfryf5h3j4as7vcqrgfjb4c8abl5y0y5h069vs4kp5ii";
9 };
10
11 buildInputs = [ ocaml findlib ocamlbuild ];
12
13 configurePhase = "ocaml setup.ml -configure --prefix $out";
14 buildPhase = "ocaml setup.ml -build";
15 installPhase = "ocaml setup.ml -install";
16
17 dontStrip = true;
18
19 meta = {
20 homepage = http://forge.ocamlcore.org/projects/ocamlmod/ocamlmod;
21 description = "Generate OCaml modules from source files";
22 platforms = ocaml.meta.platforms or [];
23 license = stdenv.lib.licenses.lgpl21;
24 maintainers = with stdenv.lib.maintainers; [
25 z77z
26 ];
27 };
28}