mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 13:13:33 +00:00
15 lines
307 B
Nix
15 lines
307 B
Nix
{ 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";
|
|
};
|
|
}
|