about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/caqti/driver-postgresql.nix
blob: d48ae1186bf74f9fa8596f44dfb13d6cae70b825 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ 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";
  };
}