depot/third_party/nixpkgs/pkgs/development/ocaml-modules/caqti/driver-postgresql.nix

15 lines
307 B
Nix
Raw Normal View History

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