63 lines
1.6 KiB
Nix
63 lines
1.6 KiB
Nix
{ stdenv, fetchFromGitHub, makeWrapper, chromaprint, fetchpatch
|
|
, fftw, flac, faad2, glibcLocales, mp4v2
|
|
, libid3tag, libmad, libopus, libshout, libsndfile, libusb1, libvorbis
|
|
, opusfile
|
|
, pkgconfig, portaudio, portmidi, protobuf, qt4, rubberband, scons, sqlite
|
|
, taglib, upower, vampSDK
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mixxx-${version}";
|
|
version = "2.1.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mixxxdj";
|
|
repo = "mixxx";
|
|
rev = "release-${version}";
|
|
sha256 = "1q1px4033marraprvgr5yq9jlz943kcc10fdkn7py2ma8cfgnipq";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = [
|
|
chromaprint fftw flac faad2 glibcLocales mp4v2 libid3tag libmad libopus libshout libsndfile
|
|
libusb1 libvorbis opusfile pkgconfig portaudio portmidi protobuf qt4
|
|
rubberband scons sqlite taglib upower vampSDK
|
|
];
|
|
|
|
sconsFlags = [
|
|
"build=release"
|
|
"qtdir=${qt4}"
|
|
"faad=1"
|
|
"opus=1"
|
|
];
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
mkdir -p "$out"
|
|
scons \
|
|
-j$NIX_BUILD_CORES -l$NIX_BUILD_CORES \
|
|
$sconsFlags "prefix=$out"
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
scons $sconsFlags "prefix=$out" install
|
|
runHook postInstall
|
|
'';
|
|
|
|
fixupPhase = ''
|
|
wrapProgram $out/bin/mixxx \
|
|
--set LOCALE_ARCHIVE ${glibcLocales}/lib/locale/locale-archive;
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://mixxx.org;
|
|
description = "Digital DJ mixing software";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ maintainers.aszlig maintainers.goibhniu maintainers.bfortz ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|