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

74 lines
2.0 KiB
Nix
Raw Normal View History

{ config, lib, stdenv
, fetchurl
, autoPatchelfHook
, makeWrapper
, alsaLib
, gtk3
, lame
, ffmpeg
, vlc
, jackSupport ? true, libjack2
, pulseaudioSupport ? config.pulseaudio or true, libpulseaudio
2018-08-03 12:36:11 +01:00
}:
2019-01-13 22:25:47 +00:00
stdenv.mkDerivation rec {
pname = "reaper";
2021-02-16 02:30:36 +00:00
version = "6.23";
2018-08-03 12:36:11 +01:00
src = fetchurl {
2021-01-15 13:21:58 +00:00
url = "https://www.reaper.fm/files/${lib.versions.major version}.x/reaper${builtins.replaceStrings ["."] [""] version}_linux_x86_64.tar.xz";
2021-02-16 02:30:36 +00:00
sha256 = "1s9c8prqk38738hjaixiy8ljp94cqw7jq3160890477jyk6cvicd";
2018-08-03 12:36:11 +01:00
};
nativeBuildInputs = [ autoPatchelfHook makeWrapper ];
buildInputs = [
alsaLib
stdenv.cc.cc.lib # reaper and libSwell need libstdc++.so.6
gtk3
2019-01-13 22:25:47 +00:00
];
runtimeDependencies = [
gtk3 # libSwell needs libgdk-3.so.0
]
++ lib.optional jackSupport libjack2
++ lib.optional pulseaudioSupport libpulseaudio;
2018-08-03 12:36:11 +01:00
dontBuild = true;
installPhase = ''
2021-02-16 02:30:36 +00:00
runHook preInstall
2019-01-13 22:25:47 +00:00
XDG_DATA_HOME="$out/share" ./install-reaper.sh \
--install $out/opt \
--integrate-user-desktop
2018-08-03 12:36:11 +01:00
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.
2018-08-04 08:56:04 +01:00
wrapProgram $out/opt/REAPER/reaper \
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ lame ffmpeg vlc ]}"
2018-08-03 12:36:11 +01:00
mkdir $out/bin
2018-08-04 08:56:04 +01:00
ln -s $out/opt/REAPER/reaper $out/bin/
2018-08-03 12:36:11 +01:00
ln -s $out/opt/REAPER/reamote-server $out/bin/
2021-02-16 02:30:36 +00:00
runHook postInstall
2018-08-03 12:36:11 +01:00
'';
meta = with lib; {
2018-08-03 12:36:11 +01:00
description = "Digital audio workstation";
homepage = "https://www.reaper.fm/";
2018-08-03 12:36:11 +01:00
license = licenses.unfree;
platforms = [ "x86_64-linux" ];
2021-01-21 14:10:35 +00:00
maintainers = with maintainers; [ jfrankenau ilian ];
2018-08-03 12:36:11 +01:00
};
}