mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: xf86-input-vmmouse: Fix installation path.
* gnu/packages/xorg.scm (xf86-input-vmmouse): Fix installation path.
This commit is contained in:
parent
de9c504697
commit
36c0d43000
1 changed files with 5 additions and 1 deletions
|
@ -2200,7 +2200,6 @@ (define-public xf86-input-synaptics
|
||||||
(license license:x11)))
|
(license license:x11)))
|
||||||
|
|
||||||
|
|
||||||
;; FIXME: Installation tries to create ...-xorg-server-1.12.2/share/X11/xorg.conf.d
|
|
||||||
(define-public xf86-input-vmmouse
|
(define-public xf86-input-vmmouse
|
||||||
(package
|
(package
|
||||||
(name "xf86-input-vmmouse")
|
(name "xf86-input-vmmouse")
|
||||||
|
@ -2218,6 +2217,11 @@ (define-public xf86-input-vmmouse
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs `(("pkg-config" ,pkg-config)
|
(inputs `(("pkg-config" ,pkg-config)
|
||||||
("xorg-server" ,xorg-server)))
|
("xorg-server" ,xorg-server)))
|
||||||
|
(arguments
|
||||||
|
`(#:configure-flags
|
||||||
|
(list(string-append "--with-xorg-conf-dir="
|
||||||
|
(assoc-ref %outputs "out")
|
||||||
|
"/share/X11/xorg.conf.d"))))
|
||||||
(home-page "http://www.x.org/wiki/")
|
(home-page "http://www.x.org/wiki/")
|
||||||
(synopsis "xorg implementation of the X Window System")
|
(synopsis "xorg implementation of the X Window System")
|
||||||
(description "X.org provides an implementation of the X Window System")
|
(description "X.org provides an implementation of the X Window System")
|
||||||
|
|
Loading…
Reference in a new issue