nixpkgs/pkgs/applications/audio/mixxx/default.nix

63 lines
1.6 KiB
Nix
Raw Normal View History

2018-08-31 14:38:54 +02:00
{ stdenv, fetchFromGitHub, makeWrapper, chromaprint, fetchpatch
, fftw, flac, faad2, glibcLocales, mp4v2
2018-01-07 23:52:26 +01:00
, libid3tag, libmad, libopus, libshout, libsndfile, libusb1, libvorbis
2018-10-19 10:43:04 +02:00
, opusfile
2018-01-07 23:52:26 +01:00
, pkgconfig, portaudio, portmidi, protobuf, qt4, rubberband, scons, sqlite
2018-08-26 13:13:18 +02:00
, taglib, upower, vampSDK
}:
stdenv.mkDerivation rec {
name = "mixxx-${version}";
version = "2.1.4";
2018-08-26 13:13:18 +02:00
src = fetchFromGitHub {
owner = "mixxxdj";
repo = "mixxx";
rev = "release-${version}";
sha256 = "1q1px4033marraprvgr5yq9jlz943kcc10fdkn7py2ma8cfgnipq";
};
2018-08-31 14:38:54 +02:00
nativeBuildInputs = [ makeWrapper ];
buildInputs = [
2018-08-31 14:38:54 +02:00
chromaprint fftw flac faad2 glibcLocales mp4v2 libid3tag libmad libopus libshout libsndfile
2018-10-19 10:43:04 +02:00
libusb1 libvorbis opusfile pkgconfig portaudio portmidi protobuf qt4
2018-08-26 13:13:18 +02:00
rubberband scons sqlite taglib upower vampSDK
];
sconsFlags = [
"build=release"
"qtdir=${qt4}"
2018-01-07 23:52:26 +01:00
"faad=1"
2018-10-19 10:43:04 +02:00
"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
'';
2018-08-31 14:38:54 +02:00
fixupPhase = ''
wrapProgram $out/bin/mixxx \
--set LOCALE_ARCHIVE ${glibcLocales}/lib/locale/locale-archive;
'';
meta = with stdenv.lib; {
2017-08-03 21:28:31 +02:00
homepage = https://mixxx.org;
description = "Digital DJ mixing software";
license = licenses.gpl2Plus;
2018-08-26 13:13:18 +02:00
maintainers = [ maintainers.aszlig maintainers.goibhniu maintainers.bfortz ];
platforms = platforms.linux;
};
}