about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ocsipersist/pgsql.nix
blob: e93c8b4790359ed3900f413d6c520e76a529bf4c (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
24
{ buildDunePackage, ocsipersist-lib
, lwt_log
, ocsigen_server
, pgocaml
, xml-light
}:

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

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

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