1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

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