mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
14 lines
301 B
Nix
14 lines
301 B
Nix
|
{ lib, buildDunePackage, caqti, ocaml_sqlite3 }:
|
||
|
|
||
|
buildDunePackage {
|
||
|
pname = "caqti-driver-sqlite3";
|
||
|
useDune2 = true;
|
||
|
inherit (caqti) version src;
|
||
|
|
||
|
propagatedBuildInputs = [ caqti ocaml_sqlite3 ];
|
||
|
|
||
|
meta = caqti.meta // {
|
||
|
description = "Sqlite3 driver for Caqti using C bindings";
|
||
|
};
|
||
|
}
|