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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
304 B
Nix
Raw Normal View History

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