mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add virglrenderer.
* gnu/packages/spice.scm (virglrenderer): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
1d2c67c11e
commit
2ef2654de4
1 changed files with 27 additions and 0 deletions
|
@ -18,7 +18,9 @@
|
|||
|
||||
(define-module (gnu packages spice)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages gl)
|
||||
#:use-module (gnu packages libusb)
|
||||
#:use-module (gnu packages linux)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix download)
|
||||
|
@ -50,3 +52,28 @@ (define-public usbredir
|
|||
attached.")
|
||||
(home-page "http://www.spice-space.org")
|
||||
(license (list license:gpl2+ license:lgpl2.0+ license:lgpl2.1+))))
|
||||
|
||||
(define-public virglrenderer
|
||||
(package
|
||||
(name "virglrenderer")
|
||||
(version "0.5.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://www.freedesktop.org/software/virgl/"
|
||||
"virglrenderer-" version ".tar.bz2"))
|
||||
(sha256
|
||||
(base32
|
||||
"1dj0j8nbyr7nrpds4dqlp43ji8ixjyqhgw6ywlz1r9dn6cs5m5d1"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
`(("libepoxy" ,libepoxy)
|
||||
("mesa" ,mesa)
|
||||
("udev" ,eudev)))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(synopsis "Virtual 3D GPU library")
|
||||
(description "A virtual 3D GPU library that enables a virtualized operating
|
||||
system to use the host GPU to accelerate 3D rendering.")
|
||||
(home-page "https://virgil3d.github.io")
|
||||
(license (list license:expat license:bsd-3))))
|
||||
|
|
Loading…
Reference in a new issue