about summary refs log tree commit diff
path: root/pkgs/applications/audio/redux
diff options
context:
space:
mode:
authorMihnea Stoian <mihn.stn@gmail.com>2022-07-13 09:01:57 +0300
committerMihnea Stoian <mihn.stn@gmail.com>2022-07-13 09:04:05 +0300
commit5ded7b6dc2b86311d57dd25afc81d1539ff8e90f (patch)
tree6e83f6eff8ab632f74f582011920464c9e4a04d8 /pkgs/applications/audio/redux
parent01b8587401f41aecd4b77aa9698c0cba65a38882 (diff)
redux: 1.2.2 -> 1.3.2
Diffstat (limited to 'pkgs/applications/audio/redux')
-rw-r--r--pkgs/applications/audio/redux/default.nix14
1 files changed, 10 insertions, 4 deletions
diff --git a/pkgs/applications/audio/redux/default.nix b/pkgs/applications/audio/redux/default.nix
index 41254cc9e50ee..d0a6d9393031f 100644
--- a/pkgs/applications/audio/redux/default.nix
+++ b/pkgs/applications/audio/redux/default.nix
@@ -2,6 +2,7 @@
 , stdenv
 , fetchurl
 , libX11
+, libXext
 , alsa-lib
 , autoPatchelfHook
 , releasePath ? null
@@ -15,19 +16,24 @@
 
 stdenv.mkDerivation rec {
   pname = "redux";
-  version = "1.2.2";
+  version = "1.3.2";
 
   src = if releasePath != null then releasePath
     else fetchurl {
-      url = "https://files.renoise.com/demo/Renoise_Redux_${lib.replaceStrings ["."] ["_"] version}_Demo_Linux.tar.gz";
-      sha256 = "0zbwsg7nh9x3q29jv2kpqb3vwi0ksdwybhb4m2qr95rxrpx1kxhm";
+      url = "https://files.renoise.com/demo/Renoise_Redux_${lib.replaceStrings ["."] ["_"] version}_Demo_Linux_x86_64.tar.gz";
+      sha256 = "sha256-wafOeNvVIHc8pOHoNQcCwV8+OwnuevJo1EcRQKRX4YA=";
     };
 
   nativeBuildInputs = [
     autoPatchelfHook
   ];
 
-  buildInputs = [ libX11 alsa-lib stdenv.cc.cc.lib ];
+  buildInputs = [
+    libX11
+    libXext
+    alsa-lib
+    stdenv.cc.cc.lib
+  ];
 
   installPhase = ''
     runHook preInstall