62d0a320b3
This reverts commit bdb77826d98544ab37741f740dd3516023924b27. Jack1 is not obsolete and neither jack1 nor jack2 is called 'jackaudio'. Q: What's the difference between Jack1 and Jack2? A: http://trac.jackaudio.org/wiki/Q_differenc_jack1_jack2
52 lines
1.6 KiB
Nix
52 lines
1.6 KiB
Nix
{ stdenv, fetchurl, pkgconfig, cmake
|
|
, glew, ftgl, ttf_bitstream_vera
|
|
, withQt ? true, qt4
|
|
, withLibvisual ? false, libvisual, SDL
|
|
, withJack ? false, jack2
|
|
, withPulseAudio ? true, pulseaudio
|
|
}:
|
|
|
|
assert withJack -> withQt;
|
|
assert withPulseAudio -> withQt;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "projectm-2.1.0";
|
|
|
|
meta = {
|
|
description = "Music Visualizer";
|
|
homepage = "http://projectm.sourceforge.net/";
|
|
license = stdenv.lib.licenses.lgpl21Plus;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/projectm/2.1.0/projectM-complete-2.1.0-Source.tar.gz";
|
|
sha256 = "1vh6jk68a0jdb6qwppb6f8cbgmhnv2ba3bcavzfd6sq06gq08cji";
|
|
};
|
|
|
|
patchPhase = ''
|
|
sed -i 's:''${LIBVISUAL_PLUGINSDIR}:''${CMAKE_INSTALL_PREFIX}/lib/libvisual-0.4:' \
|
|
src/projectM-libvisual/CMakeLists.txt
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkgconfig cmake ];
|
|
|
|
cmakeFlags = ''
|
|
-DprojectM_FONT_MENU=${ttf_bitstream_vera}/share/fonts/truetype/VeraMono.ttf
|
|
-DprojectM_FONT_TITLE=${ttf_bitstream_vera}/share/fonts/truetype/Vera.ttf
|
|
-DINCLUDE-PROJECTM-TEST=OFF
|
|
-DINCLUDE-PROJECTM-QT=${if withQt then "ON" else "OFF"}
|
|
-DINCLUDE-PROJECTM-LIBVISUAL=${if withLibvisual then "ON" else "OFF"}
|
|
-DINCLUDE-PROJECTM-JACK=${if withJack then "ON" else "OFF"}
|
|
-DINCLUDE-PROJECTM-PULSEAUDIO=${if withPulseAudio then "ON" else "OFF"}
|
|
'';
|
|
|
|
buildInputs = with stdenv.lib;
|
|
[ glew ftgl ]
|
|
++ optional withQt qt4
|
|
++ optionals withLibvisual [ libvisual SDL ]
|
|
++ optional withJack jack2
|
|
++ optional withPulseAudio pulseaudio
|
|
;
|
|
}
|