luaPackages.lsqlite3complete: init at 0.9.5-1

This commit is contained in:
Spencer Pogorzelski 2022-08-10 20:43:44 -07:00 committed by Matthieu Coudron
parent 3d796abc90
commit 776bc0a8a5

View file

@ -133,6 +133,28 @@ rec {
};
}) {};
lsqlite3complete = callPackage ({ fetchzip }:
buildLuarocksPackage {
pname = "lsqlite3complete";
version = "0.9.5-1";
src = fetchzip {
url =
"http://lua.sqlite.org/index.cgi/zip/lsqlite3_fsl09y.zip?uuid=fsl_9y";
extension = "zip";
hash = "sha256-lNiYaqZPw31Y8jzW8i7mETtRh9G3/q5EwckJeCg3EL8=";
};
propagatedBuildInputs = [ glibc.out ];
nativeBuildInputs = [ pkg-config ];
meta = {
homepage = "http://lua.sqlite.org/";
description = "A binding for Lua to the SQLite3 database library";
license.fullName = "MIT";
};
}) {};
nfd = callPackage ../development/lua-modules/nfd {
inherit (pkgs.gnome) zenity;
inherit (pkgs.darwin.apple_sdk.frameworks) AppKit;