summary refs log tree commit diff
path: root/pkgs/applications/audio/reaper
diff options
context:
space:
mode:
authorilian <ilian@tuta.io>2021-06-14 17:07:21 +0200
committerGitHub <noreply@github.com>2021-06-14 17:07:21 +0200
commit5d341cdaed4d304b850707ba1d15272c1f019b36 (patch)
tree69037ccec2dedcf7ec2558000d771dea30f694b7 /pkgs/applications/audio/reaper
parente1a1d4399c4fcdb95712152531bfe2cb17094a05 (diff)
downloadnixpkgs-5d341cdaed4d304b850707ba1d15272c1f019b36.tar
nixpkgs-5d341cdaed4d304b850707ba1d15272c1f019b36.tar.gz
nixpkgs-5d341cdaed4d304b850707ba1d15272c1f019b36.tar.bz2
nixpkgs-5d341cdaed4d304b850707ba1d15272c1f019b36.tar.lz
nixpkgs-5d341cdaed4d304b850707ba1d15272c1f019b36.tar.xz
nixpkgs-5d341cdaed4d304b850707ba1d15272c1f019b36.tar.zst
nixpkgs-5d341cdaed4d304b850707ba1d15272c1f019b36.zip
reaper: 6.28 -> 6.29 (#126838)
Diffstat (limited to 'pkgs/applications/audio/reaper')
-rw-r--r--pkgs/applications/audio/reaper/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/audio/reaper/default.nix b/pkgs/applications/audio/reaper/default.nix
index 705685811ff..773560c83ca 100644
--- a/pkgs/applications/audio/reaper/default.nix
+++ b/pkgs/applications/audio/reaper/default.nix
@@ -17,11 +17,12 @@
 
 stdenv.mkDerivation rec {
   pname = "reaper";
-  version = "6.28";
+  version = "6.29";
 
   src = fetchurl {
-    url = "https://www.reaper.fm/files/${lib.versions.major version}.x/reaper${builtins.replaceStrings ["."] [""] version}_linux_x86_64.tar.xz";
-    hash = "sha256-38HSjR+rQWPzMOjq1abLn/MP3DCz5YzBg0v2kBsQmR4=";
+    url = "https://www.reaper.fm/files/${lib.versions.major version}.x/reaper${builtins.replaceStrings ["."] [""] version}_linux_${stdenv.targetPlatform.qemuArch}.tar.xz";
+    hash = if stdenv.isx86_64 then "sha256-DOul6J2Y7szy4+Q4SeO0uG6PSuU+MELE7ky8W3mSpTQ="
+                              else "sha256-67iTi6bFlbQtyCjnPIjK8K/3aV+zaCsWBRCWmgYonM4=";
   };
 
   nativeBuildInputs = [
@@ -74,7 +75,7 @@ stdenv.mkDerivation rec {
     description = "Digital audio workstation";
     homepage = "https://www.reaper.fm/";
     license = licenses.unfree;
-    platforms = [ "x86_64-linux" ];
+    platforms = [ "x86_64-linux" "aarch64-linux" ];
     maintainers = with maintainers; [ jfrankenau ilian ];
   };
 }