renoise: add platforms, derive src version from proper version string

This commit is contained in:
Yegor Timoshenko 2018-05-24 10:38:06 +03:00 committed by Matthew Bauer
parent 02de1dc707
commit 04e5cf6665

View file

@ -6,31 +6,35 @@
# 2) Override the releasePath attribute to point to the location of the newly downloaded bundle. # 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 # 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. # use of functions like requireFile as the hash will be different for every user.
let fileversion = "3_1_0"; let
srcVersion = version: lib.replaceStrings ["."] ["_"] version;
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "renoise-${lib.replaceStrings ["_"] ["."] fileversion}"; name = "renoise-${version}";
buildInputs = [ libX11 libXext libXcursor libXrandr alsaLib libjack2 ]; version = "3.1.0";
src = src =
if stdenv.system == "x86_64-linux" then if stdenv.system == "x86_64-linux" then
if builtins.isNull releasePath then if builtins.isNull releasePath then
fetchurl { fetchurl {
url = "http://files.renoise.com/demo/Renoise_${fileversion}_Demo_x86_64.tar.bz2"; url = "http://files.renoise.com/demo/Renoise_${srcVersion version}_Demo_x86_64.tar.bz2";
sha256 = "0pan68fr22xbj7a930y29527vpry3f07q3i9ya4fp6g7aawffsga"; sha256 = "0pan68fr22xbj7a930y29527vpry3f07q3i9ya4fp6g7aawffsga";
} }
else else
releasePath releasePath
else if stdenv.system == "i686-linux" then else if stdenv.system == "i686-linux" then
if builtins.isNull releasePath then if builtins.isNull releasePath then
fetchurl { fetchurl {
url = "http://files.renoise.com/demo/Renoise_${fileversion}_Demo_x86.tar.bz2"; url = "http://files.renoise.com/demo/Renoise_${srcVersion version}_Demo_x86.tar.bz2";
sha256 = "1lccjj4k8hpqqxxham5v01v2rdwmx3c5kgy1p9lqvzqma88k4769"; sha256 = "1lccjj4k8hpqqxxham5v01v2rdwmx3c5kgy1p9lqvzqma88k4769";
} }
else else
releasePath releasePath
else throw "Platform is not supported by Renoise"; else throw "Platform is not supported by Renoise";
buildInputs = [ libX11 libXext libXcursor libXrandr alsaLib libjack2 ];
installPhase = '' installPhase = ''
cp -r Resources $out cp -r Resources $out
@ -52,9 +56,11 @@ stdenv.mkDerivation rec {
patchelf --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) --set-rpath $out/lib $out/renoise patchelf --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) --set-rpath $out/lib $out/renoise
''; '';
meta = { meta = with stdenv.lib; {
description = "Modern tracker-based DAW"; description = "Modern tracker-based DAW";
homepage = http://www.renoise.com/; homepage = http://www.renoise.com/;
license = stdenv.lib.licenses.unfree; license = licenses.unfree;
maintainers = [];
platforms = [ "i686-linux" "x86_64-linux" ];
}; };
} }