mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-19 17:39:34 +00:00
14 lines
304 B
Nix
14 lines
304 B
Nix
{ 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";
|
|
};
|
|
}
|