lmms: fix build with freetype-2.5
This commit is contained in:
parent
e80ec957f0
commit
4e39e578f2
1 changed files with 6 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
{ stdenv, fetchurl, SDL, alsaLib, cmake, fftwSinglePrec, jackaudio, libogg
|
||||
, libsamplerate, libsndfile, pkgconfig, pulseaudio, qt4
|
||||
, libsamplerate, libsndfile, pkgconfig, pulseaudio, qt4, freetype
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -16,6 +16,11 @@ stdenv.mkDerivation rec {
|
|||
libsndfile pkgconfig pulseaudio qt4
|
||||
];
|
||||
|
||||
# work around broken build system of 0.4.*
|
||||
NIX_CFLAGS_COMPILE = "-I${freetype}/include/freetype2";
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Linux MultiMedia Studio";
|
||||
homepage = "http://lmms.sourceforge.net";
|
||||
|
|
Loading…
Reference in a new issue