diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-11-19 21:19:18 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-11-19 21:19:18 -0600 |
| commit | 6ebe514137fa41ac015122da4dcaba56af84e531 (patch) | |
| tree | 0582d0684f130b08ec2b7ea73d57642485245ccf /nix/flake.nix | |
| parent | 8ec66f50c64501e30ed6adae94f89b90b48de7f0 (diff) | |
Implement JTAG-UART input
Diffstat (limited to 'nix/flake.nix')
| -rw-r--r-- | nix/flake.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nix/flake.nix b/nix/flake.nix index b9f443a..3a291fa 100644 --- a/nix/flake.nix +++ b/nix/flake.nix @@ -5,6 +5,7 @@ in { devShells."${system}".default = pkgs.mkShell { buildInputs = with pkgs; [ + ncurses openssl SDL2 ]; @@ -30,8 +31,8 @@ export CROSS_COMPILE=arm-none-eabi- export MAKEFLAGS="AR=gcc-ar" - export CXXFLAGS="-O3 -flto $(pkg-config --cflags sdl2)" - export LDFLAGS="-O3 -flto $(pkg-config --libs sdl2)" + export CXXFLAGS="-O3 -flto $(pkg-config --cflags sdl2 ncursesw)" + export LDFLAGS="-O3 -flto $(pkg-config --libs sdl2 ncursesw)" # <https://discourse.nixos.org/t/fonts-in-nix-installed-packages-on-a-non-nixos-system/5871/7> export LOCALE_ARCHIVE="${pkgs.glibcLocales}/lib/locale/locale-archive" |
