mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
gnu: xorg: Make xgamma compile.
* gnu/packages/xorg.scm (libxxf86vm): Propagate inputs libxext and xf86vidmodeproto.
This commit is contained in:
parent
979bc0f49b
commit
47038b76b2
1 changed files with 28 additions and 26 deletions
|
@ -1767,32 +1767,6 @@ (define-public libxxf86dga
|
||||||
(license license:x11)))
|
(license license:x11)))
|
||||||
|
|
||||||
|
|
||||||
(define-public libxxf86vm
|
|
||||||
(package
|
|
||||||
(name "libxxf86vm")
|
|
||||||
(version "1.1.2")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (string-append
|
|
||||||
"mirror://xorg/X11R7.7/src/everything/libXxf86vm-"
|
|
||||||
version
|
|
||||||
".tar.bz2"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"117w92xz39rcqcahspi48nc04cc9110x1dycpf3vbcb6p0pifr55"))))
|
|
||||||
(build-system gnu-build-system)
|
|
||||||
(inputs
|
|
||||||
`(("libx11" ,libx11)
|
|
||||||
("libxext" ,libxext)
|
|
||||||
("pkg-config" ,pkg-config)
|
|
||||||
("xf86vidmodeproto" ,xf86vidmodeproto)))
|
|
||||||
(home-page "http://www.x.org/wiki/")
|
|
||||||
(synopsis "xorg implementation of the X Window System")
|
|
||||||
(description "X.org provides an implementation of the X Window System")
|
|
||||||
(license license:x11)))
|
|
||||||
|
|
||||||
|
|
||||||
(define-public luit
|
(define-public luit
|
||||||
(package
|
(package
|
||||||
(name "luit")
|
(name "luit")
|
||||||
|
@ -4635,6 +4609,34 @@ (define-public libxvmc
|
||||||
(license license:x11)))
|
(license license:x11)))
|
||||||
|
|
||||||
|
|
||||||
|
(define-public libxxf86vm
|
||||||
|
(package
|
||||||
|
(name "libxxf86vm")
|
||||||
|
(version "1.1.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"mirror://xorg/X11R7.7/src/everything/libXxf86vm-"
|
||||||
|
version
|
||||||
|
".tar.bz2"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"117w92xz39rcqcahspi48nc04cc9110x1dycpf3vbcb6p0pifr55"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("libxext" ,libxext)
|
||||||
|
("xf86vidmodeproto" ,xf86vidmodeproto)))
|
||||||
|
(inputs
|
||||||
|
`(("libx11" ,libx11)
|
||||||
|
("libxext" ,libxext)
|
||||||
|
("pkg-config" ,pkg-config)))
|
||||||
|
(home-page "http://www.x.org/wiki/")
|
||||||
|
(synopsis "xorg implementation of the X Window System")
|
||||||
|
(description "X.org provides an implementation of the X Window System")
|
||||||
|
(license license:x11)))
|
||||||
|
|
||||||
|
|
||||||
(define-public xorg-server
|
(define-public xorg-server
|
||||||
(package
|
(package
|
||||||
(name "xorg-server")
|
(name "xorg-server")
|
||||||
|
|
Loading…
Reference in a new issue