bootstrap lua

This commit is contained in:
Fabien Freling 2025-02-24 13:15:12 +01:00
parent fbb14897bd
commit 61b773ac6d
3 changed files with 108 additions and 1 deletions

View file

@ -12,11 +12,14 @@
outputs = { self, nixpkgs, playdate-sdk }:
let system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
stdenv = pkgs.stdenv;
playdate-sdk-pkg = playdate-sdk.packages.${system}.default;
in {
devShell.${system} = with pkgs;
devShell.${system} = with stdenv; with pkgs;
mkShell {
nativeBuildInputs = [
just
lua-language-server
playdate-sdk-pkg
];
};