nixos-config/pkgs/tic-80/default.nix

103 lines
2.2 KiB
Nix
Raw Normal View History

# Build the TIC-80 virtual computer console with the PRO version. The
# developers are kind enough to make it easy to compile it if you know
# how.
{ stdenv
, lib
, SDL2
, alsaLib
, cmake
, fetchFromGitHub
, freeglut
, git
, gtk3
, dbus
, libGLU
, libX11
, libstdcxx5
, libglvnd
, libsamplerate
, mesa
, pkg-config
, sndio
, valgrind
, zlib
, pulseaudioSupport ? stdenv.isLinux
, libpulseaudio
, waylandSupport ? true
, wayland
, libxkbcommon
, esoundSupport ? true
, espeak
, jackSupport ? true
, jack2
, rubySupport ? false
, mruby
, rake
}:
# TODO: Fix the timestamp in the help section.
stdenv.mkDerivation rec {
pname = "tic-80";
version = "unstable-2022-10-26";
src = fetchFromGitHub {
owner = "nesbox";
repo = "TIC-80";
rev = "7f4ad780d75d2cd8446f856f85ba293af70530eb";
sha256 = "sha256-8ciBya9ismBQ27JFQr3Qsk72UvHA1vMEExSwGNk3iOk=";
fetchSubmodules = true;
};
# We're only replacing 'mruby' since it will have the most complications to
# build. Also, it uses the same version as the nixpkgs version as of
# 2021-12-18 which is v3.0.0.
patches = [ ./change-cmake.patch ];
postPatch = ''
substituteInPlace CMakeLists.txt --replace '@mruby@' "${mruby}"
'';
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [
alsaLib
freeglut
gtk3
libsamplerate
libGLU
libglvnd
mesa
git
SDL2
zlib
mruby
rake
valgrind
sndio
] ++ lib.optional pulseaudioSupport libpulseaudio
++ lib.optional jackSupport jack2 ++ lib.optional esoundSupport espeak
++ lib.optionals (stdenv.isLinux && waylandSupport) [
wayland
libxkbcommon
];
# TODO: Replace SOKOL-built version with SDL.
cmakeFlags = [ "-DBUILD_PRO=ON" ];
# Export all of the TIC-80-related utilities.
outputs = [ "out" "dev" ];
postInstall = ''
install -Dm755 bin/* -t $dev/bin
install -Dm644 lib/* -t $dev/lib
install -Dm644 ../include/* -t $dev/include
mkdir -p $out/share/tic80
cp -r ../demos $out/share/tic80/
patchelf --set-rpath ${lib.makeLibraryPath [ libstdcxx5 libX11 dbus ]} $out/bin/tic80
'';
meta = with lib; {
description = "A fantasy computer with built-in game dev tools.";
homepage = "https://tic80.com/";
license = licenses.mit;
};
}