lol

airwave: fix build

The unfree source is old and hard to find; small version bump so the required
zip file is available via https://github.com/psycha0s/airwave/issues/92 .

+27 -7
+26 -6
pkgs/applications/audio/airwave/default.nix
··· 1 - { lib, stdenv, multiStdenv, cmake, fetchFromGitHub, file, libX11, makeWrapper 2 - , qt5, requireFile, unzip, wine 1 + { lib, 2 + stdenv, 3 + multiStdenv, 4 + fetchFromGitHub, 5 + requireFile, 6 + unzip, 7 + wine, 8 + cmake, 9 + makeWrapper, 10 + wrapQtAppsHook, 11 + file, 12 + libX11, 13 + qt5 3 14 }: 4 15 5 16 let ··· 13 24 }; 14 25 15 26 vst-sdk = stdenv.mkDerivation rec { 16 - name = "vstsdk368_08_11_2017_build_121"; 27 + name = "vstsdk369_01_03_2018_build_132"; 17 28 src = requireFile { 18 29 name = "${name}.zip"; 19 30 url = "http://www.steinberg.net/en/company/developers.html"; 20 - sha256 = "e0f235d8826d70f1ae0ae5929cd198acae1ecff74612fde5c60cbfb45c2f4a70"; 31 + sha256 = "0r29fv6yhm2m5yznn8m4my7fq01w1lpphax4sshagy6b1dgjlv3w"; 21 32 }; 22 33 nativeBuildInputs = [ unzip ]; 23 34 installPhase = "cp -r . $out"; ··· 42 53 43 54 src = airwave-src; 44 55 45 - nativeBuildInputs = [ cmake makeWrapper ]; 56 + nativeBuildInputs = [ 57 + cmake 58 + makeWrapper 59 + wrapQtAppsHook 60 + ]; 46 61 47 - buildInputs = [ file libX11 qt5.qtbase wine-xembed ]; 62 + buildInputs = [ 63 + file 64 + libX11 65 + qt5.qtbase 66 + wine-xembed 67 + ]; 48 68 49 69 postPatch = '' 50 70 # Binaries not used directly should land in libexec/.
+1 -1
pkgs/top-level/all-packages.nix
··· 28040 28040 28041 28041 ahoviewer = callPackage ../applications/graphics/ahoviewer { }; 28042 28042 28043 - airwave = callPackage ../applications/audio/airwave { }; 28043 + airwave = libsForQt5.callPackage ../applications/audio/airwave { }; 28044 28044 28045 28045 akira-unstable = callPackage ../applications/graphics/akira { }; 28046 28046