diff options
author | David Craven <david@craven.ch> | 2016-08-15 20:31:24 +0200 |
---|---|---|
committer | David Craven <david@craven.ch> | 2016-08-18 13:12:24 +0200 |
commit | 598f639413eb9ad525621410e4cc982fd10f170e (patch) | |
tree | 1f7378b458ab04fb4c2a22be2b42b62d5eccf85f | |
parent | 51b1d5398793bf717a9d2cb6478efc7a173754fa (diff) | |
download | patches-598f639413eb9ad525621410e4cc982fd10f170e.tar patches-598f639413eb9ad525621410e4cc982fd10f170e.tar.gz |
gnu: qsynth: Use modular qt.
* gnu/packages/audio.scm (qsynth)[inputs]: Add qtbase, qtx11extras. Remove qt.
[native-inputs]: Add qttools.
-rw-r--r-- | gnu/packages/audio.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 5c42aaa493..a21cd5b84e 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -2112,9 +2112,12 @@ interface.") (build-system gnu-build-system) (arguments `(#:tests? #f)) ; no "check" phase + (native-inputs + `(("qttools" ,qttools))) (inputs - `(("qt" ,qt) - ("fluidsynth" ,fluidsynth))) + `(("fluidsynth" ,fluidsynth) + ("qtbase" ,qtbase) + ("qtx11extras" ,qtx11extras))) (home-page "http://qsynth.sourceforge.net") (synopsis "Graphical user interface for FluidSynth") (description |