12 lines
148 B
Nix
12 lines
148 B
Nix
|
let
|
||
|
pkgs = import <nixpkgs> {};
|
||
|
in
|
||
|
pkgs.mkShell {
|
||
|
packages = with pkgs; [
|
||
|
# Choose the build tools that you need
|
||
|
ccemux
|
||
|
lua
|
||
|
];
|
||
|
}
|
||
|
|