unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
blob b3d795b2513b0b3a6d078e0c2e1dd3cc7f4079f2 2205 bytes (raw)
name: gnu/packages/spice.scm 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
 
(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)
  #:use-module (guix packages)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix utils))

(define-public usbredir
  (package
    (name "usbredir")
    (version "0.7.1")
    (source (origin
              (method url-fetch)
              (uri (string-append
                "http://spice-space.org/download/usbredir/"
                "usbredir-" version ".tar.bz2"))
              (sha256
               (base32
                "1wsnmk4wjpdhbn1zaxg6bmyxspcki2zgy0am9lk037rnl4krwzj0"))))
    (build-system gnu-build-system)
    (inputs
      `(("libusb" ,libusb)))
    (native-inputs
      `(("pkg-config" ,pkg-config)))
    (synopsis "Libraries to help implementing support for usbredir")
    (description "Usbredir is a protocol for redirection USB traffic from a
single USB device, to a different (virtual) machine then the one to which the
USB device is 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
      `(("expat" ,expat)
        ("libdrm" ,libdrm)
        ("libepoxy" ,libepoxy)
        ("mesa" ,mesa)
        ("udev" ,eudev)))
    (native-inputs
      `(("pkg-config" ,pkg-config)))
    (synopsis "Virtual 3D GPU library")
    (description "A virtual 3D GPU library, that allows the guest operating
system to use the host GPU to accelerate 3D rendering")
    (home-page "https://virgil3d.github.io")
    (license (list license:expat license:bsd-3))))

debug log:

solving b3d795b ...
found b3d795b in https://yhetil.org/guix-devel/20160724175230.19184-2-david@craven.ch/
found c0cec99 in https://yhetil.org/guix-devel/20160724175230.19184-1-david@craven.ch/

applying [1/2] https://yhetil.org/guix-devel/20160724175230.19184-1-david@craven.ch/
diff --git a/gnu/packages/spice.scm b/gnu/packages/spice.scm
new file mode 100644
index 0000000..c0cec99


applying [2/2] https://yhetil.org/guix-devel/20160724175230.19184-2-david@craven.ch/
diff --git a/gnu/packages/spice.scm b/gnu/packages/spice.scm
index c0cec99..b3d795b 100644

Checking patch gnu/packages/spice.scm...
Applied patch gnu/packages/spice.scm cleanly.
Checking patch gnu/packages/spice.scm...
Applied patch gnu/packages/spice.scm cleanly.

index at:
100644 b3d795b2513b0b3a6d078e0c2e1dd3cc7f4079f2	gnu/packages/spice.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).