From 45e740b1192368fc0f2622fcaba3bdf4bf155af1 Mon Sep 17 00:00:00 2001 From: aszlig Date: Mon, 28 Oct 2013 03:16:32 +0100 Subject: [PATCH] mixxx: New package in version 1.11.0. Compiles fine on linux i686 and amd64. Adding myself as maintainer, even though I'm not using the package by myself, but a friend is using it for DJing from a NixOS live system I'm maintaining. Signed-off-by: aszlig --- pkgs/applications/audio/mixxx/default.nix | 51 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 ++ 2 files changed, 55 insertions(+) create mode 100644 pkgs/applications/audio/mixxx/default.nix diff --git a/pkgs/applications/audio/mixxx/default.nix b/pkgs/applications/audio/mixxx/default.nix new file mode 100644 index 000000000000..b76eecc9e4ad --- /dev/null +++ b/pkgs/applications/audio/mixxx/default.nix @@ -0,0 +1,51 @@ +{ stdenv, fetchurl, scons, pkgconfig, qt4, portaudio, portmidi, libusb1 +, libmad, protobuf, libvorbis, taglib, libid3tag, flac, libsndfile, libshout +, fftw, vampSDK +}: + +stdenv.mkDerivation rec { + name = "mixxx-${version}"; + version = "1.11.0"; + + src = fetchurl { + url = "http://downloads.mixxx.org/${name}/${name}-src.tar.gz"; + sha256 = "0c833gf4169xvpfn7car9vzvwfwl9d3xwmbfsy36cv8ydifip5h0"; + }; + + buildInputs = [ + scons pkgconfig qt4 portaudio portmidi libusb1 libmad protobuf libvorbis + taglib libid3tag flac libsndfile libshout fftw vampSDK + ]; + + sconsFlags = [ + "build=release" + "qtdir=${qt4}" + ]; + + postPatch = '' + sed -i -e 's/"which /"type -P /' build/depends.py + ''; + + buildPhase = '' + runHook preBuild + ensureDir "$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 + ''; + + 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; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 376a59a47f16..32621d2312ef 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8291,6 +8291,10 @@ let mirage = callPackage ../applications/graphics/mirage {}; + mixxx = callPackage ../applications/audio/mixxx { + inherit (vamp) vampSDK; + }; + mmex = callPackage ../applications/office/mmex { }; monkeysAudio = callPackage ../applications/audio/monkeys-audio { };