Skip to content

Commit

Permalink
mixxx: add AAC support
Browse files Browse the repository at this point in the history
fixes #29472
  • Loading branch information
willtim authored and adisbladis committed Jan 9, 2018
1 parent dbb774c commit 067cac7
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pkgs/applications/audio/mixxx/default.nix
@@ -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
}:

Expand All @@ -26,14 +26,15 @@ 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
];

sconsFlags = [
"build=release"
"qtdir=${qt4}"
"faad=1"
];

buildPhase = ''
Expand Down

0 comments on commit 067cac7

Please sign in to comment.