summaryrefslogtreecommitdiffstats
path: root/pkgs/development/libraries/audio
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2017-09-03 08:58:57 +0200
committerVladimír Čunát <vcunat@gmail.com>2017-09-03 09:57:20 +0200
commit53998f5036f98a2f4928eb328c1678966fa8bea4 (patch)
treebcbf9883e49674d4fef0b05035b39e48c51af2b7 /pkgs/development/libraries/audio
parentca12bd7a3f50296bffa052040afb3e7a65474687 (diff)
treewide: purge explicit usage of gcc6
It's now the default. /cc #19456 This makes a real build simplification, because in our current bootstrapping+aliases, `gcc6` attribute is not the default compiler but a derivation *built by* the default compiler. nix-exec didn't build before this commit already
Diffstat (limited to 'pkgs/development/libraries/audio')
-rw-r--r--pkgs/development/libraries/audio/suil/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/audio/suil/default.nix b/pkgs/development/libraries/audio/suil/default.nix
index f0dbdcc7daf6..8864d710174a 100644
--- a/pkgs/development/libraries/audio/suil/default.nix
+++ b/pkgs/development/libraries/audio/suil/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, fetchurl, gtk2, lv2, pkgconfig, python, serd, sord, sratom, gcc6
+{ stdenv, lib, fetchurl, gtk2, lv2, pkgconfig, python, serd, sord, sratom
, withQt4 ? true, qt4 ? null
, withQt5 ? false, qt5 ? null }:
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
sha256 = "1kji3lhha26qr6xm9j8ic5c40zbrrb5qnwm2qxzmsfxgmrz29wkf";
};
- buildInputs = [ gtk2 lv2 pkgconfig python serd sord sratom gcc6 ]
+ buildInputs = [ gtk2 lv2 pkgconfig python serd sord sratom ]
++ (lib.optionals withQt4 [ qt4 ])
++ (lib.optionals withQt5 (with qt5; [ qtbase qttools ]));