traza/build.sh

11 lines
195 B
Bash
Raw Normal View History

2021-09-26 17:54:27 +00:00
#!/bin/sh
source /etc/os-release
# Don't know how to just have SDL2 available on NixOS
if echo $ID | grep "nixos" 2>/dev/null >/dev/null; then
nix-shell -p SDL2 --run make
else
make
fi