mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 08:48:34 -05:00
removed SBarLua pkg
This commit is contained in:
parent
09e2357256
commit
40d4de25a5
2 changed files with 0 additions and 34 deletions
|
|
@ -1,3 +1,2 @@
|
||||||
pkgs: {
|
pkgs: {
|
||||||
sbarlua = pkgs.callPackage ./sbarlua {};
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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}/"
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue