about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/caqti/driver-postgresql.nix
blob: a1b427a5edf4393111736d603102f0bdbdf6375c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ lib, buildDunePackage, caqti, postgresql }:

buildDunePackage {
  pname = "caqti-driver-postgresql";
  useDune2 = true;
  inherit (caqti) version src;

  propagatedBuildInputs = [ caqti postgresql ];

  meta = caqti.meta // {
    description = "PostgreSQL driver for Caqti based on C bindings";
  };
}