about summary refs log tree commit diff
path: root/logbook.nix
blob: 695b907da16d2f4d6b92e22b328fe98da5c8849f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ stdenv, ocaml, topkg, ocamlbuild, findlib, ocaml_lwt
, jingoo, ptime, angstrom, astring, opam}:

stdenv.mkDerivation rec {
  version = "0.1";
  name = "ocaml${ocaml.version}-logbook-${version}";

  src = ./.;

  buildInputs = [ ocaml findlib ocamlbuild topkg opam
                  ocaml_lwt jingoo ptime angstrom astring
                ];

  inherit (topkg) buildPhase installPhase;
}