mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
1b6764da4e
Except for caqti-type-calendar, whose most recent version number is 1.2.0.
14 lines
289 B
Nix
14 lines
289 B
Nix
{ lib, buildDunePackage, caqti, mariadb }:
|
|
|
|
buildDunePackage {
|
|
pname = "caqti-driver-mariadb";
|
|
useDune2 = true;
|
|
inherit (caqti) version src;
|
|
|
|
propagatedBuildInputs = [ caqti mariadb ];
|
|
|
|
meta = caqti.meta // {
|
|
description = "MariaDB driver for Caqti using C bindings";
|
|
};
|
|
}
|