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

84 lines
2.3 KiB
Nix
Raw Normal View History

{ config, lib, stdenv
, fetchurl
, autoPatchelfHook
, makeWrapper
, alsa-lib
, gtk3
, lame
, ffmpeg
, vlc
2021-03-31 12:05:14 +02:00
, xdg-utils
, which
, jackSupport ? true, libjack2
, pulseaudioSupport ? config.pulseaudio or true, libpulseaudio
2018-08-03 13:36:11 +02:00
}:
2019-01-13 23:25:47 +01:00
stdenv.mkDerivation rec {
pname = "reaper";
2021-12-28 00:22:44 +01:00
version = "6.43";
2018-08-03 13:36:11 +02:00
src = fetchurl {
url = "https://www.reaper.fm/files/${lib.versions.major version}.x/reaper${builtins.replaceStrings ["."] [""] version}_linux_${stdenv.hostPlatform.qemuArch}.tar.xz";
hash = {
2021-12-28 00:22:44 +01:00
x86_64-linux = "sha256-VQ91px9YZWbrw31fFQxS+H/6fsjkLDrYU6FtI8eSq6E=";
aarch64-linux = "sha256-x6z5+H7ASWiuNL0maNGK05VmJptHdFGRiFf6DgwlZDw=";
}.${stdenv.hostPlatform.system};
2018-08-03 13:36:11 +02:00
};
2021-03-31 12:05:14 +02:00
nativeBuildInputs = [
autoPatchelfHook
makeWrapper
xdg-utils # Required for desktop integration
which
];
2018-08-03 13:36:11 +02:00
buildInputs = [
alsa-lib
stdenv.cc.cc.lib # reaper and libSwell need libstdc++.so.6
gtk3
2019-01-13 23:25:47 +01:00
];
runtimeDependencies = [
gtk3 # libSwell needs libgdk-3.so.0
]
++ lib.optional jackSupport libjack2
++ lib.optional pulseaudioSupport libpulseaudio;
2018-08-03 13:36:11 +02:00
dontBuild = true;
installPhase = ''
2021-02-16 03:30:36 +01:00
runHook preInstall
2021-03-31 12:05:14 +02:00
HOME="$out/share" XDG_DATA_HOME="$out/share" ./install-reaper.sh \
2019-01-13 23:25:47 +01:00
--install $out/opt \
--integrate-user-desktop
2018-08-03 13:36:11 +02: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 09:56:04 +02:00
wrapProgram $out/opt/REAPER/reaper \
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ lame ffmpeg vlc ]}"
2018-08-03 13:36:11 +02:00
mkdir $out/bin
2018-08-04 09:56:04 +02:00
ln -s $out/opt/REAPER/reaper $out/bin/
2018-08-03 13:36:11 +02:00
ln -s $out/opt/REAPER/reamote-server $out/bin/
2021-02-16 03:30:36 +01:00
runHook postInstall
2018-08-03 13:36:11 +02:00
'';
meta = with lib; {
2018-08-03 13:36:11 +02:00
description = "Digital audio workstation";
homepage = "https://www.reaper.fm/";
2018-08-03 13:36:11 +02:00
license = licenses.unfree;
2021-06-14 17:07:21 +02:00
platforms = [ "x86_64-linux" "aarch64-linux" ];
2021-12-28 00:22:44 +01:00
maintainers = with maintainers; [ jfrankenau ilian orivej uniquepointer ];
2018-08-03 13:36:11 +02:00
};
}