rush/flake.nix

29 lines
704 B
Nix
Raw Normal View History

2025-02-24 13:02:36 +01:00
{
description = "Rush - endless runner for Playdate";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
playdate-sdk = {
url = "github:RegularTetragon/playdate-sdk-flake";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, playdate-sdk }:
let system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
playdate-sdk-pkg = playdate-sdk.packages.${system}.default;
in {
2025-02-26 14:53:32 +01:00
devShell.${system} = with pkgs;
2025-02-24 13:02:36 +01:00
mkShell {
nativeBuildInputs = [
2025-02-24 13:15:12 +01:00
just
lua-language-server
2025-02-26 14:53:32 +01:00
nushell
2025-02-26 15:46:05 +01:00
pixelorama
2025-02-24 13:02:36 +01:00
playdate-sdk-pkg
];
};
};
}