about summary refs log tree commit diff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorTimothée Haudebourg <timothee.haudebourg@ens-rennes.fr>2019-12-13 20:41:20 +0100
committerLassulus <github@lassul.us>2019-12-13 21:23:27 +0100
commit6005fb02fcb9b9f1be2dad681057ad592f31fd8b (patch)
tree7653ac17127aeecd08044f37c05c5fe9c7614935 /pkgs/applications/audio
parentb85286fe667f5c57a221a0e98269235507135c50 (diff)
downloadnixlib-6005fb02fcb9b9f1be2dad681057ad592f31fd8b.tar
nixlib-6005fb02fcb9b9f1be2dad681057ad592f31fd8b.tar.gz
nixlib-6005fb02fcb9b9f1be2dad681057ad592f31fd8b.tar.bz2
nixlib-6005fb02fcb9b9f1be2dad681057ad592f31fd8b.tar.lz
nixlib-6005fb02fcb9b9f1be2dad681057ad592f31fd8b.tar.xz
nixlib-6005fb02fcb9b9f1be2dad681057ad592f31fd8b.tar.zst
nixlib-6005fb02fcb9b9f1be2dad681057ad592f31fd8b.zip
renoise: 3.1.0 -> 3.2.0
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/renoise/default.nix28
1 files changed, 11 insertions, 17 deletions
diff --git a/pkgs/applications/audio/renoise/default.nix b/pkgs/applications/audio/renoise/default.nix
index 62625aa421d1..7b2d92ad59d3 100644
--- a/pkgs/applications/audio/renoise/default.nix
+++ b/pkgs/applications/audio/renoise/default.nix
@@ -4,8 +4,7 @@
 with stdenv.lib;
 
 # To use the full release version:
-# 1) Sign into https://backstage.renoise.com and download the appropriate (x86 or x86_64) version
-#    for your machine to some stable location.
+# 1) Sign into https://backstage.renoise.com and download the release version to some stable location.
 # 2) Override the releasePath attribute to point to the location of the newly downloaded bundle.
 # Note: Renoise creates an individual build for each license which screws somewhat with the
 # use of functions like requireFile as the hash will be different for every user.
@@ -15,25 +14,20 @@ in
 
 stdenv.mkDerivation rec {
   pname = "renoise";
-  version = "3.1.0";
+  version = "3.2.0";
 
   src =
     if stdenv.hostPlatform.system == "x86_64-linux" then
         if releasePath == null then
-        fetchurl {
-          url = "https://files.renoise.com/demo/Renoise_${urlVersion version}_Demo_x86_64.tar.bz2";
-          sha256 = "0pan68fr22xbj7a930y29527vpry3f07q3i9ya4fp6g7aawffsga";
-        }
+		    fetchurl {
+		      urls = [
+		          "https://files.renoise.com/demo/Renoise_${urlVersion version}_Demo_Linux.tar.gz"
+		          "https://web.archive.org/web/https://files.renoise.com/demo/Renoise_${urlVersion version}_Demo_Linux.tar.gz"
+		      ];
+		      sha256 = "0cfczzpk1ddz61nk4d72fydbm5nbgxqp95v81by2n87s1wffjjhi";
+		    }
         else
-        releasePath
-    else if stdenv.hostPlatform.system == "i686-linux" then
-        if releasePath == null then
-        fetchurl {
-          url = "http://files.renoise.com/demo/Renoise_${urlVersion version}_Demo_x86.tar.bz2";
-          sha256 = "1lccjj4k8hpqqxxham5v01v2rdwmx3c5kgy1p9lqvzqma88k4769";
-        }
-        else
-        releasePath
+        	releasePath
     else throw "Platform is not supported by Renoise";
 
   buildInputs = [ alsaLib libjack2 libX11 libXcursor libXext libXrandr ];
@@ -69,6 +63,6 @@ stdenv.mkDerivation rec {
     homepage = https://www.renoise.com/;
     license = licenses.unfree;
     maintainers = [];
-    platforms = [ "i686-linux" "x86_64-linux" ];
+    platforms = [ "x86_64-linux" ];
   };
 }