Files
nixpkgs/pkgs/development/ocaml-modules/ocsipersist/pgsql-config.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
422 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
buildDunePackage,
findlib,
ocsipersist-pgsql,
ocsigen_server,
xml-light,
}:
buildDunePackage {
pname = "ocsipersist-pgsql-config";
inherit (ocsipersist-pgsql) version src;
propagatedBuildInputs = [
findlib
ocsipersist-pgsql
ocsigen_server
xml-light
];
meta = ocsipersist-pgsql.meta // {
description = "Ocsigen Server configuration file extension for ocsipersist-pgsql";
};
}