sqlite-based browsing history api

not hooked up to actual browsing actions yet
This commit is contained in:
2023-01-02 21:25:36 +00:00
parent cc0f881fed
commit 3cbe77a55e
4 changed files with 106 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{
fetchurl
, lua
, lib
, sqlite
}:
let
in lua.pkgs.buildLuarocksPackage {
pname = "lsqlite3";
version = "0.9.5-1";
buildInputs = [ sqlite ] ;
src = fetchurl {
url = "https://luarocks.org/manifests/dougcurrie/lsqlite3-0.9.5-1.src.rock";
sha256 = "sha256-/a48AzkKtOS32zoT0Jt5/+GTGHObdS0XkUrc2z0u+f8=";
};
disabled = (lua.pkgs.luaOlder "5.1");
propagatedBuildInputs = [ lua ];
preBuild = ''
cd lsqlite3_fsl09y
'';
}