Merge pull request #118940 from SFrijters/openttd-remove-libxdg_basedir

openttd: Remove libxdg_basedir as dependency
This commit is contained in:
Dmitry Kalinkin 2021-04-09 19:02:05 -04:00 committed by GitHub
commit 27693c7205
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, fetchzip, cmake, SDL2, libpng, zlib, xz, freetype, fontconfig, libxdg_basedir
{ lib, stdenv, fetchurl, fetchzip, cmake, SDL2, libpng, zlib, xz, freetype, fontconfig
, withOpenGFX ? true, withOpenSFX ? true, withOpenMSX ? true
, withFluidSynth ? true, audioDriver ? "alsa", fluidsynth, soundfont-fluid, procps
, writeScriptBin, makeWrapper, runtimeShell
@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ cmake makeWrapper ];
buildInputs = [ SDL2 libpng xz zlib freetype fontconfig libxdg_basedir ]
buildInputs = [ SDL2 libpng xz zlib freetype fontconfig ]
++ lib.optionals withFluidSynth [ fluidsynth soundfont-fluid ];
prefixKey = "--prefix-dir=";