Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildDunePackage, 3 caqti, 4 ocaml_sqlite3, 5 alcotest, 6 dune-site, 7}: 8 9buildDunePackage { 10 pname = "caqti-driver-sqlite3"; 11 inherit (caqti) version src; 12 13 propagatedBuildInputs = [ 14 caqti 15 ocaml_sqlite3 16 ]; 17 18 checkInputs = [ 19 alcotest 20 dune-site 21 ]; 22 23 doCheck = true; 24 25 meta = caqti.meta // { 26 description = "Sqlite3 driver for Caqti using C bindings"; 27 }; 28}