about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ocsipersist/sqlite.nix
blob: 2cfa30bc908e6615387ae9a87bd82796fad401bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ buildDunePackage, ocsipersist-lib
, lwt_log
, ocaml_sqlite3
, ocsigen_server
, xml-light
}:

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

  propagatedBuildInputs = [
    lwt_log
    ocaml_sqlite3
    ocsigen_server
    ocsipersist-lib
    xml-light
  ];

  meta = ocsipersist-lib.meta // {
    description = "Persistent key/value storage (for Ocsigen) using SQLite";
  };
}