Merge pull request #152394 from uniquepointer/reap

reaper: 6.38 -> 6.43

authored by Bobby Rong and committed by GitHub 7d0688ab 67b13d8d

+4 -4
+4 -4
pkgs/applications/audio/reaper/default.nix
··· 17 17 18 18 stdenv.mkDerivation rec { 19 19 pname = "reaper"; 20 - version = "6.38"; 20 + version = "6.43"; 21 21 22 22 src = fetchurl { 23 23 url = "https://www.reaper.fm/files/${lib.versions.major version}.x/reaper${builtins.replaceStrings ["."] [""] version}_linux_${stdenv.hostPlatform.qemuArch}.tar.xz"; 24 24 hash = { 25 - x86_64-linux = "sha256-K5EnrmzP8pyW9dR1fbMzkPzpS6aHm8JF1+m3afnH4rU="; 26 - aarch64-linux = "sha256-6wNWDXjQNyfU2l9Xi9JtmAuoKtHuIY5cvNMjYkwh2Sk="; 25 + x86_64-linux = "sha256-VQ91px9YZWbrw31fFQxS+H/6fsjkLDrYU6FtI8eSq6E="; 26 + aarch64-linux = "sha256-x6z5+H7ASWiuNL0maNGK05VmJptHdFGRiFf6DgwlZDw="; 27 27 }.${stdenv.hostPlatform.system}; 28 28 }; 29 29 ··· 78 78 homepage = "https://www.reaper.fm/"; 79 79 license = licenses.unfree; 80 80 platforms = [ "x86_64-linux" "aarch64-linux" ]; 81 - maintainers = with maintainers; [ jfrankenau ilian orivej ]; 81 + maintainers = with maintainers; [ jfrankenau ilian orivej uniquepointer ]; 82 82 }; 83 83 }