summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/ocsipersist/sqlite.nix
blob: c1c088b7836f375e0067849b6ff549bf3cee095f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  buildDunePackage,
  ocsipersist,
  logs,
  sqlite3,
  ocsigen_server,
}:

buildDunePackage {
  pname = "ocsipersist-sqlite";
  inherit (ocsipersist) version src;

  propagatedBuildInputs = [
    logs
    sqlite3
    ocsipersist
  ];

  meta = ocsipersist.meta // {
    description = "Persistent key/value storage for OCaml using SQLite";
  };
}