reaper: mark audio backend libs as optional, add missing plugin libs
This commit is contained in:
parent
f6a583eeec
commit
32f19166bc
|
@ -1,7 +1,16 @@
|
||||||
{ lib, stdenv, fetchurl, autoPatchelfHook, makeWrapper
|
{ config, lib, stdenv
|
||||||
, alsaLib, xorg, libjack2
|
, fetchurl
|
||||||
, gtk3, pango, gdk-pixbuf, cairo, glib, freetype
|
, autoPatchelfHook
|
||||||
, libpulseaudio, xdg_utils
|
, makeWrapper
|
||||||
|
|
||||||
|
, alsaLib
|
||||||
|
, gtk3
|
||||||
|
, lame
|
||||||
|
, ffmpeg
|
||||||
|
, vlc
|
||||||
|
|
||||||
|
, jackSupport ? true, libjack2
|
||||||
|
, pulseaudioSupport ? config.pulseaudio or true, libpulseaudio
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -17,22 +26,15 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
alsaLib
|
alsaLib
|
||||||
|
stdenv.cc.cc.lib # reaper and libSwell need libstdc++.so.6
|
||||||
xorg.libX11
|
gtk3
|
||||||
xorg.libXi
|
|
||||||
|
|
||||||
gdk-pixbuf
|
|
||||||
pango
|
|
||||||
cairo
|
|
||||||
glib
|
|
||||||
freetype
|
|
||||||
|
|
||||||
xdg_utils
|
|
||||||
];
|
];
|
||||||
|
|
||||||
runtimeDependencies = [
|
runtimeDependencies = [
|
||||||
gtk3
|
gtk3 # libSwell needs libgdk-3.so.0
|
||||||
];
|
]
|
||||||
|
++ lib.optional jackSupport libjack2
|
||||||
|
++ lib.optional pulseaudioSupport libpulseaudio;
|
||||||
|
|
||||||
dontBuild = true;
|
dontBuild = true;
|
||||||
|
|
||||||
|
@ -42,8 +44,15 @@ stdenv.mkDerivation rec {
|
||||||
--integrate-user-desktop
|
--integrate-user-desktop
|
||||||
rm $out/opt/REAPER/uninstall-reaper.sh
|
rm $out/opt/REAPER/uninstall-reaper.sh
|
||||||
|
|
||||||
|
# Dynamic loading of plugin dependencies does not adhere to rpath of
|
||||||
|
# reaper executable that gets modified with runtimeDependencies.
|
||||||
|
# Patching each plugin with DT_NEEDED is cumbersome and requires
|
||||||
|
# hardcoding of API versions of each dependency.
|
||||||
|
# Setting the rpath of the plugin shared object files does not
|
||||||
|
# seem to have an effect for some plugins.
|
||||||
|
# We opt for wrapping the executable with LD_LIBRARY_PATH prefix.
|
||||||
wrapProgram $out/opt/REAPER/reaper \
|
wrapProgram $out/opt/REAPER/reaper \
|
||||||
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ libpulseaudio libjack2 ]}"
|
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ lame ffmpeg vlc ]}"
|
||||||
|
|
||||||
mkdir $out/bin
|
mkdir $out/bin
|
||||||
ln -s $out/opt/REAPER/reaper $out/bin/
|
ln -s $out/opt/REAPER/reaper $out/bin/
|
||||||
|
|
Loading…
Reference in New Issue