My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/ocaml-modules/caqti/driver-mariadb.nix

13 lines
289 B

{ 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";
};
}