about summary refs log tree commit diff
path: root/logbook.nix
blob: dc857cb0c8f937b5a47ffe6c9710e837de9bdbf5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ buildDunePackage, ocaml_lwt, jingoo, ptime, angstrom, astring, cow}:

buildDunePackage rec {
  version = "0.2";
  pname = "logbook";

  src = ./.;

  buildInputs = [ cow ocaml_lwt jingoo ptime angstrom astring ];

  useDune2 = true;
}