Merge branch 'next' into accelerometer

This commit is contained in:
minenice55 2026-03-02 14:35:06 -05:00
commit bae4df9d0c

8
shell.nix Normal file
View file

@ -0,0 +1,8 @@
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "blankart-env";
buildInputs = [ cmake gcc ninja sdl3 zlib libpng openal libsndfile miniupnpc curl libopenmpt game-music-emu ];
# cmake flags, add -DSRB2_CONFIG_NOVERIFYIWADS=ON to the below command to build without IWAD verification
# Usage from build/: cmake .. $cmakeFlags
cmakeFlags = ["-DSDL3_INCLUDE_DIR=${lib.getDev sdl3}/include -DOPENMPT_INCLUDE_DIR=${lib.getDev libopenmpt}/include"];
}