nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at fix-function-merge 12 lines 280 B view raw
1{ buildDunePackage, caqti, postgresql }: 2 3buildDunePackage { 4 pname = "caqti-driver-postgresql"; 5 inherit (caqti) version src; 6 7 propagatedBuildInputs = [ caqti postgresql ]; 8 9 meta = caqti.meta // { 10 description = "PostgreSQL driver for Caqti based on C bindings"; 11 }; 12}