diff options
author | Mathieu Lirzin <mthl@gnu.org> | 2015-11-23 10:44:53 +0100 |
---|---|---|
committer | Mathieu Lirzin <mthl@gnu.org> | 2015-12-06 17:23:26 +0100 |
commit | d4fe27fe2c6ae70a8dc0c0a314816326b235e503 (patch) | |
tree | 678a1c194f9878720cb03ba14e1b95547d244d20 /gnu/packages/xiph.scm | |
parent | cd08fe4259f72815a4b096b2a5ce325e9b445da4 (diff) | |
download | patches-d4fe27fe2c6ae70a8dc0c0a314816326b235e503.tar patches-d4fe27fe2c6ae70a8dc0c0a314816326b235e503.tar.gz |
gnu: Move pkg-config to native inputs.
* gnu/packages/xiph.scm (ao)[native-inputs]: Move pkg-config from
inputs.
* gnu/packages/xorg.scm (xf86-video-geode)[native-inputs]: Likewise.
Diffstat (limited to 'gnu/packages/xiph.scm')
-rw-r--r-- | gnu/packages/xiph.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/xiph.scm b/gnu/packages/xiph.scm index 6de0a2defb..3e4d6687ea 100644 --- a/gnu/packages/xiph.scm +++ b/gnu/packages/xiph.scm @@ -166,9 +166,11 @@ stereo encoding, and voice activity detection.") ;; XXX: Should back-ends be pushed to different outputs? For instance, ;; "out" would include only the ALSA back-end, while "pulse" would ;; contain 'lib/ao/plugins-4/libpulse.*'. - (inputs `(("pkg-config" ,pkg-config) - ("alsa-lib" ,alsa-lib) - ("pulseaudio" ,pulseaudio))) + (inputs + `(("alsa-lib" ,alsa-lib) + ("pulseaudio" ,pulseaudio))) + (native-inputs + `(("pkg-config" ,pkg-config))) (synopsis "Cross platform audio library") (description "Libao is a cross-platform audio library that allows programs to |