gnu: xf86-video-intel: Update to git snapshot e41040f.
* gnu/packages/xorg.scm (xf86-video-intel): Update to git snapshot e41040f. Upstream isn't making releases. Modified-By: Mark H Weaver <mhw@netris.org>
This commit is contained in:
parent
315a0ecc0d
commit
6cc328b43b
@ -2811,39 +2811,48 @@ X server.")
|
|||||||
|
|
||||||
|
|
||||||
(define-public xf86-video-intel
|
(define-public xf86-video-intel
|
||||||
(package
|
(let ((commit "e41040f"))
|
||||||
(name "xf86-video-intel")
|
(package
|
||||||
(version "2.21.15")
|
(name "xf86-video-intel")
|
||||||
(source
|
(version (string-append "2.99.917." commit))
|
||||||
(origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append
|
;; there's no current tarball
|
||||||
"mirror://xorg/individual/driver/xf86-video-intel-"
|
(method git-fetch)
|
||||||
version
|
(uri (git-reference
|
||||||
".tar.bz2"))
|
(url "http://anongit.freedesktop.org/git/xorg/driver/xf86-video-intel.git")
|
||||||
(sha256
|
(commit commit)))
|
||||||
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1z6ncmpszmwqi9xr590c4kp4gjjf7mndcr56r35x2bx7h87i8nkx"))
|
"1gfh0ghkaqv4nfjdgbi6digqkz13hcnl56nl4vy0dj5lcrmrdxxs"))
|
||||||
(patches (list (search-patch "xf86-video-intel-compat-api.patch")
|
(file-name (string-append name "-" version))))
|
||||||
(search-patch "xf86-video-intel-glibc-2.20.patch")))))
|
(build-system gnu-build-system)
|
||||||
(build-system gnu-build-system)
|
(inputs `(("mesa" ,mesa)
|
||||||
(inputs `(("mesa" ,mesa)
|
("udev" ,eudev)
|
||||||
("udev" ,eudev)
|
("libx11" ,libx11)
|
||||||
("libx11" ,libx11)
|
("libxfont" ,libxfont)
|
||||||
("xorg-server" ,xorg-server)))
|
("xorg-server" ,xorg-server)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("pkg-config" ,pkg-config)
|
||||||
(supported-systems
|
("autoconf" ,autoconf)
|
||||||
;; This driver is only supported on Intel systems.
|
("automake" ,automake)
|
||||||
(filter (lambda (system) (or (string-prefix? "i686-" system)
|
("libtool" ,libtool)))
|
||||||
(string-prefix? "x86_64-" system)))
|
(supported-systems
|
||||||
%supported-systems))
|
;; This driver is only supported on Intel systems.
|
||||||
(home-page "http://www.x.org/wiki/")
|
(filter (lambda (system) (or (string-prefix? "i686-" system)
|
||||||
(synopsis "Intel video driver for X server")
|
(string-prefix? "x86_64-" system)))
|
||||||
(description
|
%supported-systems))
|
||||||
"xf86-video-intel is a 2D graphics driver for the Xorg X server.
|
(arguments
|
||||||
|
'(#:phases (modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'bootstrap
|
||||||
|
(lambda _
|
||||||
|
(zero? (system* "autoreconf" "-vfi")))))))
|
||||||
|
(home-page "http://www.x.org/wiki/")
|
||||||
|
(synopsis "Intel video driver for X server")
|
||||||
|
(description
|
||||||
|
"xf86-video-intel is a 2D graphics driver for the Xorg X server.
|
||||||
It supports a variety of Intel graphics chipsets.")
|
It supports a variety of Intel graphics chipsets.")
|
||||||
(license license:x11)))
|
(license license:x11))))
|
||||||
|
|
||||||
|
|
||||||
(define-public xf86-video-mach64
|
(define-public xf86-video-mach64
|
||||||
|
Loading…
Reference in New Issue
Block a user