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:
parent
c1c617ff8d
commit
5f3ba2015b
|
@ -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
|
, withOpenGFX ? true, withOpenSFX ? true, withOpenMSX ? true
|
||||||
, withFluidSynth ? true, audioDriver ? "alsa", fluidsynth, soundfont-fluid, procps
|
, withFluidSynth ? true, audioDriver ? "alsa", fluidsynth, soundfont-fluid, procps
|
||||||
, writeScriptBin, makeWrapper, runtimeShell
|
, writeScriptBin, makeWrapper, runtimeShell
|
||||||
|
@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake makeWrapper ];
|
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 ];
|
++ lib.optionals withFluidSynth [ fluidsynth soundfont-fluid ];
|
||||||
|
|
||||||
prefixKey = "--prefix-dir=";
|
prefixKey = "--prefix-dir=";
|
||||||
|
|
Loading…
Reference in New Issue