994b21d1c1
With support for SQLite and PostgreSQL
25 lines
425 B
Nix
25 lines
425 B
Nix
{ 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";
|
|
};
|
|
}
|
|
|