Nix flake that provides a PSP development toolchain.
Make sure flakes are enabled. If you don't have Nix, install it from here. This installer can enable flakes for you.
Then create a new project using:
nix flake new --refresh --template github:pspdev/pspdev-nix#cmake project_dirYou can also initialize in the current directory with:
nix flake init --refresh --template github:pspdev/pspdev-nix#cmake--refresh is specified as templates may change over time upstream, so this
way you will always make new projects using the latest templates.
This flake is built and cached on Cachix:
- Cache:
https://pspdev.cachix.org - Public key:
pspdev.cachix.org-1:lFw1M0EYJeN3Y2xHR7spiuPmThrNDXo8Z9I0Jgzig/0=
To use it, add the following to your Nix configuration:
substituters = [ "https://pspdev.cachix.org" ];
trusted-public-keys = [ "pspdev.cachix.org-1:lFw1M0EYJeN3Y2xHR7spiuPmThrNDXo8Z9I0Jgzig/0=" ];This project is licensed under the Apache License 2.0. See the LICENSE.txt file for more details.