This commit is contained in:
Fabien Freling 2025-02-26 14:53:32 +01:00
parent 61b773ac6d
commit c402593a34
6 changed files with 77 additions and 53 deletions

View file

@ -12,14 +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 stdenv; with pkgs;
devShell.${system} = with pkgs;
mkShell {
nativeBuildInputs = [
just
lua-language-server
nushell
playdate-sdk-pkg
];
};