ae91cbe6cc
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
13 lines
304 B
Nix
13 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";
|
|
};
|
|
}
|