nixpkgs/pkgs/development/ocaml-modules/caqti/driver-postgresql.nix
2023-04-05 08:43:21 +02:00

15 lines
307 B
Nix

{ lib, buildDunePackage, caqti, postgresql }:
buildDunePackage {
pname = "caqti-driver-postgresql";
inherit (caqti) version src;
duneVersion = "3";
propagatedBuildInputs = [ caqti postgresql ];
meta = caqti.meta // {
description = "PostgreSQL driver for Caqti based on C bindings";
};
}