removed SBarLua pkg

This commit is contained in:
Tyler Mayoff 2025-10-28 08:58:05 -04:00
parent 09e2357256
commit 40d4de25a5
No known key found for this signature in database
GPG key ID: FAE8714D991290A9
2 changed files with 0 additions and 34 deletions

View file

@ -1,3 +1,2 @@
pkgs: {
sbarlua = pkgs.callPackage ./sbarlua {};
}

View file

@ -1,33 +0,0 @@
{
stdenv,
clang,
fetchFromGitHub,
gcc,
readline,
lua5_4,
}: let
lua = lua5_4;
in
stdenv.mkDerivation {
pname = "SBarLua";
version = "unstable-2024-02-28";
src = fetchFromGitHub {
owner = "FelixKratz";
repo = "SbarLua";
rev = "437bd2031da38ccda75827cb7548e7baa4aa9978";
hash = "sha256-F0UfNxHM389GhiPQ6/GFbeKQq5EvpiqQdvyf7ygzkPg=";
};
nativeBuildInputs = [
clang
gcc
];
buildInputs = [readline];
installPhase = ''
mkdir -p $out/lib/lua/${lua.luaversion}/
cp -r bin/* "$out/lib/lua/${lua.luaversion}/"
'';
}