summary refs log tree commit diff
diff options
context:
space:
mode:
authoruniquepointer <uniquepointer@mailbox.org>2022-02-12 18:05:44 -0500
committeruniquepointer <uniquepointer@mailbox.org>2022-02-12 18:05:44 -0500
commit43b6d6a7a2dd0981f53bb7f6a470348f311fd6d8 (patch)
tree717acd0343d7bc5f00fb2c7691d8a0bb2ca29343
parent7ff9c00c4be6a5869d059cdc9aea0df01efd9f8a (diff)
downloadnixpkgs-43b6d6a7a2dd0981f53bb7f6a470348f311fd6d8.tar
nixpkgs-43b6d6a7a2dd0981f53bb7f6a470348f311fd6d8.tar.gz
nixpkgs-43b6d6a7a2dd0981f53bb7f6a470348f311fd6d8.tar.bz2
nixpkgs-43b6d6a7a2dd0981f53bb7f6a470348f311fd6d8.tar.lz
nixpkgs-43b6d6a7a2dd0981f53bb7f6a470348f311fd6d8.tar.xz
nixpkgs-43b6d6a7a2dd0981f53bb7f6a470348f311fd6d8.tar.zst
nixpkgs-43b6d6a7a2dd0981f53bb7f6a470348f311fd6d8.zip
Update reaper to 6.47
-rw-r--r--pkgs/applications/audio/reaper/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/audio/reaper/default.nix b/pkgs/applications/audio/reaper/default.nix
index 65ccf48e90b..820475be0c6 100644
--- a/pkgs/applications/audio/reaper/default.nix
+++ b/pkgs/applications/audio/reaper/default.nix
@@ -17,13 +17,13 @@
 
 stdenv.mkDerivation rec {
   pname = "reaper";
-  version = "6.46";
+  version = "6.47";
 
   src = fetchurl {
     url = "https://www.reaper.fm/files/${lib.versions.major version}.x/reaper${builtins.replaceStrings ["."] [""] version}_linux_${stdenv.hostPlatform.qemuArch}.tar.xz";
     hash = {
-      x86_64-linux = "sha256-cHjiO2hRK8gUaq2VfuE9GOtRJ0JyfH2rhdIbK+RxoEM=";
-      aarch64-linux = "sha256-j+05SdyDWzI1fekwwQ2RAGontEvppkUWPYfZEtOVXYg=";
+      x86_64-linux = "sha256-31HmIx/ohbrzu5uj8KOOZiHNCmXwng9h+fIGaJfYyqA=";
+      aarch64-linux = "sha256-CMmcBpaZ6BEZJ1144aQhOJ/o2NrGD7/8aq+ObLVMXYE=";
     }.${stdenv.hostPlatform.system};
   };