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/xorg.scm | |
parent | cd08fe4259f72815a4b096b2a5ce325e9b445da4 (diff) | |
download | guix-d4fe27fe2c6ae70a8dc0c0a314816326b235e503.tar guix-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/xorg.scm')
-rw-r--r-- | gnu/packages/xorg.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 54c15dd8ff..42422a3c56 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -2710,8 +2710,8 @@ framebuffer device.") "19y13xl7yfrgyis92rmxi0ld95ajgr5il0n9j1dridwzw9aizz1q")) (patches (list (search-patch "xf86-video-geode-glibc-2.20.patch"))))) (build-system gnu-build-system) - (inputs `(("pkg-config" ,pkg-config) - ("xorg-server" ,xorg-server))) + (inputs `(("xorg-server" ,xorg-server))) + (native-inputs `(("pkg-config" ,pkg-config))) (supported-systems ;; This driver is only supported on i686 systems. (filter (lambda (system) (string-prefix? "i686-" system)) |