nixpkgs/pkgs/development/ocaml-modules/ocsipersist/pgsql.nix
Vincent Laporte 994b21d1c1 ocamlPackages.ocsipersist: init at 1.1.0
With support for SQLite and PostgreSQL
2022-04-05 13:33:20 +02:00

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";
};
}