nixpkgs/pkgs/development/ocaml-modules/caqti/driver-postgresql.nix
2022-10-09 10:19:15 +02:00

13 lines
285 B
Nix

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