8deca0d420
- Added `guiModule` option that accepts "fltk", "ntk", "zest", or "off" - Split FLTK dependencies from NTK dependencies - Added support for building the FLTK gui - Added support for building the Zyn-Fusion (zest) gui - Added new derivation for the Zest UI framework (local to zynaddsubfx) It's not yet designed to be used outside of zynaddsubfx, but it may be in the future - Added flags for all optional features - Added & disabled `dssiSupport` by default - Disabled `lashSupport` by default Slows down startup looking for LASH server if not running - Added & enabled `portaudioSupport` by default Cross platform audio library that uses ALSA/JACK on Linux. Supports multiple audio streams without needing JACK. - Enabled tests - Removes nico202 as maintainer, as requested in code review
118 lines
2.9 KiB
Nix
118 lines
2.9 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, callPackage
|
|
|
|
# Required build tools
|
|
, cmake
|
|
, makeWrapper
|
|
, pkg-config
|
|
|
|
# Required dependencies
|
|
, fftw
|
|
, liblo
|
|
, minixml
|
|
, zlib
|
|
|
|
# Optional dependencies
|
|
, alsaSupport ? true
|
|
, alsaLib
|
|
, dssiSupport ? false
|
|
, dssi
|
|
, ladspaH
|
|
, jackSupport ? true
|
|
, libjack2
|
|
, lashSupport ? false
|
|
, lash
|
|
, ossSupport ? true
|
|
, portaudioSupport ? true
|
|
, portaudio
|
|
|
|
# Optional GUI dependencies
|
|
, guiModule ? "off"
|
|
, cairo
|
|
, fltk13
|
|
, libGL
|
|
, libjpeg
|
|
, libX11
|
|
, libXpm
|
|
, ntk
|
|
|
|
# Test dependencies
|
|
, cxxtest
|
|
}:
|
|
|
|
assert builtins.any (g: guiModule == g) [ "fltk" "ntk" "zest" "off" ];
|
|
|
|
let
|
|
guiName = {
|
|
"fltk" = "FLTK";
|
|
"ntk" = "NTK";
|
|
"zest" = "Zyn-Fusion";
|
|
}.${guiModule};
|
|
mruby-zest = callPackage ./mruby-zest { };
|
|
in stdenv.mkDerivation rec {
|
|
pname = "zynaddsubfx";
|
|
version = "3.0.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1vh1gszgjxwn8m32rk5222z1j2cnjax0bqpag7b47v6i36p2q4x8";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/Misc/Config.cpp --replace /usr $out
|
|
'';
|
|
|
|
nativeBuildInputs = [ cmake makeWrapper pkg-config ];
|
|
|
|
buildInputs = [ fftw liblo minixml zlib ]
|
|
++ lib.optionals alsaSupport [ alsaLib ]
|
|
++ lib.optionals dssiSupport [ dssi ladspaH ]
|
|
++ lib.optionals jackSupport [ libjack2 ]
|
|
++ lib.optionals lashSupport [ lash ]
|
|
++ lib.optionals portaudioSupport [ portaudio ]
|
|
++ lib.optionals (guiModule == "fltk") [ fltk13 libjpeg libXpm ]
|
|
++ lib.optionals (guiModule == "ntk") [ ntk cairo libXpm ]
|
|
++ lib.optionals (guiModule == "zest") [ libGL libX11 ];
|
|
|
|
cmakeFlags = [ "-DGuiModule=${guiModule}" ]
|
|
# OSS library is included in glibc.
|
|
# Must explicitly disable if support is not wanted.
|
|
++ lib.optional (!ossSupport) "-DOssEnable=OFF"
|
|
# Find FLTK without requiring an OpenGL library in buildInputs
|
|
++ lib.optional (guiModule == "fltk") "-DFLTK_SKIP_OPENGL=ON";
|
|
|
|
doCheck = true;
|
|
checkInputs = [ cxxtest ];
|
|
|
|
# When building with zest GUI, patch plugins
|
|
# and standalone executable to properly locate zest
|
|
postFixup = lib.optional (guiModule == "zest") ''
|
|
patchelf --set-rpath "${mruby-zest}:$(patchelf --print-rpath "$out/lib/lv2/ZynAddSubFX.lv2/ZynAddSubFX_ui.so")" \
|
|
"$out/lib/lv2/ZynAddSubFX.lv2/ZynAddSubFX_ui.so"
|
|
|
|
patchelf --set-rpath "${mruby-zest}:$(patchelf --print-rpath "$out/lib/vst/ZynAddSubFX.so")" \
|
|
"$out/lib/vst/ZynAddSubFX.so"
|
|
|
|
wrapProgram "$out/bin/zynaddsubfx" \
|
|
--prefix PATH : ${mruby-zest} \
|
|
--prefix LD_LIBRARY_PATH : ${mruby-zest}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "High quality software synthesizer (${guiName} GUI)";
|
|
homepage =
|
|
if guiModule == "zest"
|
|
then "https://zynaddsubfx.sourceforge.io/zyn-fusion.html"
|
|
else "https://zynaddsubfx.sourceforge.io";
|
|
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ goibhniu metadark ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|