gnu: xf86-input-mouse: Update to 1.9.1.
* gnu/packages/xorg.scm (xf86-input-mouse): Update to 1.9.1. Add "--with-sdkdir" configure flag.
This commit is contained in:
parent
02c9f9ca4c
commit
9b1cd1e56a
|
@ -2273,20 +2273,25 @@ devices, thus making direct access unnecessary.")
|
||||||
(define-public xf86-input-mouse
|
(define-public xf86-input-mouse
|
||||||
(package
|
(package
|
||||||
(name "xf86-input-mouse")
|
(name "xf86-input-mouse")
|
||||||
(version "1.7.2")
|
(version "1.9.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
"mirror://xorg/X11R7.7/src/everything/xf86-input-mouse-"
|
"mirror://xorg/individual/driver/xf86-input-mouse-"
|
||||||
version
|
version
|
||||||
".tar.bz2"))
|
".tar.bz2"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0fs1lwnycyv3d0m6l2wrnlgvbs8qw66d93hwlnmrsswfq5bp6ark"))))
|
"1kn5kx3qyn9qqvd6s24a2l1wfgck2pgfvzl90xpl024wfxsx719l"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs `(("xorg-server" ,xorg-server)))
|
(inputs `(("xorg-server" ,xorg-server)))
|
||||||
(native-inputs `(("pkg-config" ,pkg-config)))
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
||||||
|
(arguments
|
||||||
|
`(#:configure-flags
|
||||||
|
(list (string-append "--with-sdkdir="
|
||||||
|
(assoc-ref %outputs "out")
|
||||||
|
"/include/xorg"))))
|
||||||
(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 New Issue