ecmenu/shell.nix

24 lines
304 B
Nix
Raw Normal View History

2024-10-10 13:49:40 +00:00
with import <nixpkgs> {
};
mkShell {
packages = with pkgs; [
chicken
rlwrap
SDL2
SDL2_image
SDL2_ttf
]
++ (with pkgs.chickenPackages_5.chickenEggs; [
apropos
chicken-doc
csm
srfi-1
srfi-18
lsp-server
sdl2
sdl2-ttf
sdl2-image
toml
]);
}