Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
389 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
buildDunePackage,
caqti,
ocaml_sqlite3,
alcotest,
dune-site,
}:
buildDunePackage {
pname = "caqti-driver-sqlite3";
inherit (caqti) version src;
propagatedBuildInputs = [
caqti
ocaml_sqlite3
];
checkInputs = [
alcotest
dune-site
];
doCheck = true;
meta = caqti.meta // {
description = "Sqlite3 driver for Caqti using C bindings";
};
}