about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/irmin/mirage.nix
blob: 9e4bd9330799ce4a5932be11541bf69346cc82ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ buildDunePackage, irmin, fmt, ptime, mirage-clock }:

buildDunePackage {
  pname = "irmin-mirage";

  inherit (irmin) version src strictDeps;

  propagatedBuildInputs = [
    irmin fmt ptime mirage-clock
  ];

  meta = irmin.meta // {
    description = "MirageOS-compatible Irmin stores";
  };
}