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

61 lines
1.3 KiB
Nix
Raw Normal View History

2018-08-03 13:36:11 +02:00
{ stdenv, fetchurl, autoPatchelfHook, makeWrapper
, alsaLib, xorg
2019-05-22 13:03:39 +02:00
, gtk3, pango, gdk-pixbuf, cairo, glib, freetype
2019-01-13 23:25:47 +01:00
, libpulseaudio, xdg_utils
2018-08-03 13:36:11 +02:00
}:
2019-01-13 23:25:47 +01:00
stdenv.mkDerivation rec {
pname = "reaper";
version = "5.981";
2018-08-03 13:36:11 +02:00
src = fetchurl {
url = "https://www.reaper.fm/files/${stdenv.lib.versions.major version}.x/reaper${builtins.replaceStrings ["."] [""] version}_linux_x86_64.tar.xz";
sha256 = "0v4347i0pgzlinas4431dfbv1h9fk6vihvahh73valxvhydyxr8q";
2018-08-03 13:36:11 +02:00
};
nativeBuildInputs = [ autoPatchelfHook makeWrapper ];
buildInputs = [
alsaLib
xorg.libX11
xorg.libXi
2019-05-22 13:03:39 +02:00
gdk-pixbuf
2019-01-13 23:25:47 +01:00
pango
2018-08-03 13:36:11 +02:00
cairo
glib
freetype
2019-01-13 23:25:47 +01:00
xdg_utils
];
runtimeDependencies = [
gtk3
2018-08-03 13:36:11 +02:00
];
dontBuild = true;
installPhase = ''
2019-01-13 23:25:47 +01:00
XDG_DATA_HOME="$out/share" ./install-reaper.sh \
--install $out/opt \
--integrate-user-desktop
2018-08-03 13:36:11 +02:00
rm $out/opt/REAPER/uninstall-reaper.sh
2018-08-04 09:56:04 +02:00
wrapProgram $out/opt/REAPER/reaper \
2018-08-03 13:36:11 +02:00
--prefix LD_LIBRARY_PATH : ${libpulseaudio}/lib
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/
'';
meta = with stdenv.lib; {
description = "Digital audio workstation";
homepage = https://www.reaper.fm/;
license = licenses.unfree;
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ jfrankenau ];
};
}