mixxx: add AAC support

fixes #29472
This commit is contained in:
Tim Williams 2018-01-07 22:52:26 +00:00 committed by adisbladis
parent dbb774c5e1
commit 067cac78e8
No known key found for this signature in database
GPG Key ID: ED58F95069B004F5

View File

@ -1,6 +1,6 @@
{ stdenv, fetchurl, chromaprint, fetchpatch, fftw, flac, libid3tag, libmad { stdenv, fetchurl, chromaprint, fetchpatch, fftw, flac, faad2, mp4v2
, libopus, libshout, libsndfile, libusb1, libvorbis, pkgconfig , libid3tag, libmad, libopus, libshout, libsndfile, libusb1, libvorbis
, portaudio, portmidi, protobuf, qt4, rubberband, scons, sqlite , pkgconfig, portaudio, portmidi, protobuf, qt4, rubberband, scons, sqlite
, taglib, vampSDK , taglib, vampSDK
}: }:
@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
]; ];
buildInputs = [ buildInputs = [
chromaprint fftw flac libid3tag libmad libopus libshout libsndfile chromaprint fftw flac faad2 mp4v2 libid3tag libmad libopus libshout libsndfile
libusb1 libvorbis pkgconfig portaudio portmidi protobuf qt4 libusb1 libvorbis pkgconfig portaudio portmidi protobuf qt4
rubberband scons sqlite taglib vampSDK rubberband scons sqlite taglib vampSDK
]; ];
@ -34,6 +34,7 @@ stdenv.mkDerivation rec {
sconsFlags = [ sconsFlags = [
"build=release" "build=release"
"qtdir=${qt4}" "qtdir=${qt4}"
"faad=1"
]; ];
buildPhase = '' buildPhase = ''