Skip to content

Commit

Permalink
reaper: 6.28 -> 6.29 (#126838)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilian authored Jun 14, 2021
1 parent e1a1d43 commit 5d341cd
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pkgs/applications/audio/reaper/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down Expand Up @@ -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 ];
};
}

0 comments on commit 5d341cd

Please sign in to comment.