about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/caqti/driver-mariadb.nix
blob: 859402d83ea1721917f661588d510494681cdb7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ lib, buildDunePackage, caqti, mariadb }:

buildDunePackage {
  pname = "caqti-driver-mariadb";
  inherit (caqti) version src;

  propagatedBuildInputs = [ caqti mariadb ];

  duneVersion = "3";

  meta = caqti.meta // {
    description = "MariaDB driver for Caqti using C bindings";
  };
}