openttd: Remove libxdg_basedir as dependency

Dependency in code removed at 3dfee979a7e486b8d90f6398ea557d2889855059.

"Codechange: Drop libxdg-basedir dependency in favour of finding the directories ourselves"
This commit is contained in:
Stefan Frijters 2021-04-09 23:51:52 +02:00
parent c1c617ff8d
commit 5f3ba2015b
No known key found for this signature in database
GPG Key ID: 7619A6BC6E7DFA6F

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=";