Skip to content

Commit

Permalink
suil-qt5: fix build
Browse files Browse the repository at this point in the history
(cherry picked from commit 91bbd73)
  • Loading branch information
globin committed Mar 11, 2017
1 parent ead8fb7 commit 1712e58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/libraries/audio/suil/default.nix
@@ -1,4 +1,4 @@
{ stdenv, lib, fetchurl, gtk2, lv2, pkgconfig, python, serd, sord, sratom
{ stdenv, lib, fetchurl, gtk2, lv2, pkgconfig, python, serd, sord, sratom, gcc6
, withQt4 ? true, qt4 ? null
, withQt5 ? false, qt5 ? null }:

Expand All @@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
sha256 = "1kji3lhha26qr6xm9j8ic5c40zbrrb5qnwm2qxzmsfxgmrz29wkf";
};

buildInputs = [ gtk2 lv2 pkgconfig python serd sord sratom ]
buildInputs = [ gtk2 lv2 pkgconfig python serd sord sratom gcc6 ]
++ (lib.optionals withQt4 [ qt4 ])
++ (lib.optionals withQt5 (with qt5; [ qtbase qttools ]));

Expand Down

0 comments on commit 1712e58

Please sign in to comment.