about summary refs log tree commit diff
path: root/logbook.nix
blob: d0b01e1ff5d3a6a1159129dd5893f4d5c743fb85 (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, cow}:

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

  src = ./.;

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

  inherit (topkg) buildPhase installPhase;
}