2013-10-28 02:16:32 +00:00
|
|
|
{ stdenv, fetchurl, scons, pkgconfig, qt4, portaudio, portmidi, libusb1
|
|
|
|
, libmad, protobuf, libvorbis, taglib, libid3tag, flac, libsndfile, libshout
|
2016-01-23 13:50:56 +00:00
|
|
|
, rubberband, fftw, vampSDK, chromaprint, libopus, sqlite
|
2013-10-28 02:16:32 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "mixxx-${version}";
|
2016-01-23 13:50:56 +00:00
|
|
|
version = "2.0.0";
|
2013-10-28 02:16:32 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://downloads.mixxx.org/${name}/${name}-src.tar.gz";
|
2016-01-23 13:50:56 +00:00
|
|
|
sha256 = "0vb71w1yq0xwwsclrn2jj9bk8w4n14rfv5c0aw46c11mp8xz7f71";
|
2013-10-28 02:16:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
scons pkgconfig qt4 portaudio portmidi libusb1 libmad protobuf libvorbis
|
2016-01-23 13:50:56 +00:00
|
|
|
taglib libid3tag flac libsndfile libshout rubberband fftw vampSDK chromaprint
|
|
|
|
libopus sqlite
|
2013-10-28 02:16:32 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
sconsFlags = [
|
|
|
|
"build=release"
|
|
|
|
"qtdir=${qt4}"
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
sed -i -e 's/"which /"type -P /' build/depends.py
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
runHook preBuild
|
2014-06-30 13:56:10 +01:00
|
|
|
mkdir -p "$out"
|
2013-10-28 02:16:32 +00:00
|
|
|
scons \
|
|
|
|
-j$NIX_BUILD_CORES -l$NIX_BUILD_CORES \
|
|
|
|
$sconsFlags "prefix=$out"
|
|
|
|
runHook postBuild
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
scons $sconsFlags "prefix=$out" install
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "http://mixxx.org/";
|
|
|
|
description = "Digital DJ mixing software";
|
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.aszlig ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|