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

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

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

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