lol
1{ lib, buildDunePackage, caqti, postgresql }:
2
3buildDunePackage {
4 pname = "caqti-driver-postgresql";
5 inherit (caqti) version src;
6
7 duneVersion = "3";
8
9 propagatedBuildInputs = [ caqti postgresql ];
10
11 meta = caqti.meta // {
12 description = "PostgreSQL driver for Caqti based on C bindings";
13 };
14}