unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
blob 7bbe0a1aaca7cd94d847b57664d4d242d64d139e 9590 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
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
 
(define-module (gnu packages spice)
  #:use-module (gnu packages)
  #:use-module (gnu packages compression)
  #:use-module (gnu packages gl)
  #:use-module (gnu packages glib)
  #:use-module (gnu packages gnome)
  #:use-module (gnu packages gstreamer)
  #:use-module (gnu packages gtk)
  #:use-module (gnu packages image)
  #:use-module (gnu packages libusb)
  #:use-module (gnu packages linux)
  #:use-module (gnu packages perl)
  #:use-module (gnu packages pkg-config)
  #:use-module (gnu packages pulseaudio)
  #:use-module (gnu packages python)
  #:use-module (gnu packages tls)
  #:use-module (gnu packages xorg)
  #:use-module (gnu packages xdisorg)
  #:use-module (gnu packages xiph)
  #:use-module (gnu packages xml)
  #: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)
    (propagated-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 license:gpl2)))

(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 allows the guest operating
system to use the host GPU to accelerate 3D rendering")
    (home-page "https://virgil3d.github.io")
    (license license:expat)))

(define-public spice-protocol
  (package
    (name "spice-protocol")
    (version "0.12.11")
    (source (origin
              (method url-fetch)
              (uri (string-append
                "http://www.spice-space.org/download/releases/"
                "spice-protocol-" version ".tar.bz2"))
              (sha256
               (base32
                "0c33kg3vdz3nnl2wjfbgmszz5hbjbvsw6map35dj9hxnpwwf9fi2"))))
    (build-system gnu-build-system)
    (synopsis "Protocol headers for the SPICE protocol")
    (description "SPICE (the Simple Protocol for Independent Computing
Environments) is a remote-display system built for virtual environments
which allows users to view a computing desktop environment.")
    (home-page "http://www.spice-space.org")
    (license license:gpl2)))

(define-public spice-gtk
  (package
    (name "spice-gtk")
    (version "0.32")
    (source (origin
              (method url-fetch)
              (uri (string-append
                "http://spice-space.org/download/gtk/"
                "spice-gtk-" version ".tar.bz2"))
              (sha256
               (base32
                "00pf94xh2xf0h1g13lnavxrysd0d0x22l5jl108cvq1mjc4z8j2c"))))
    (build-system gnu-build-system)
    (propagated-inputs
      `(("gstreamer" ,gstreamer)
        ("gst-libav" ,gst-libav)
        ("gst-plugins-base" ,gst-plugins-base)
        ("gst-plugins-good" ,gst-plugins-good)
        ("gst-plugins-bad" ,gst-plugins-bad)
        ("gst-plugins-ugly" ,gst-plugins-ugly)
        ("spice-protocol" ,spice-protocol)))
    (inputs
      `(("glib-networking" ,glib-networking)
        ("gtk+" ,gtk+)
        ("libepoxy" ,libepoxy)
        ("libjpeg" ,libjpeg)
        ("libxcb" ,libxcb)
        ("lz4" ,lz4)
        ("mesa" ,mesa)
        ("pixman" ,pixman)
        ("pulseaudio" ,pulseaudio)
        ("python" ,python)
        ("openssl" ,openssl)
        ("opus" ,opus)
        ("usbredir" ,usbredir)))
    (native-inputs
      `(("glib:bin" ,glib "bin")
        ("intltool" ,intltool)
        ("pkg-config" ,pkg-config)))
    (arguments
      `(#:configure-flags
        '("--enable-gstaudio"
          "--enable-gstvideo"
          "--enable-pulse")
        #:phases
         (modify-phases %standard-phases
           (add-after
            'install 'wrap-spicy
            (lambda* (#:key inputs outputs #:allow-other-keys)
              (let ((out             (assoc-ref outputs "out"))
                    (gst-plugin-path (getenv "GST_PLUGIN_SYSTEM_PATH")))
                (wrap-program (string-append out "/bin/spicy")
                  `("GST_PLUGIN_SYSTEM_PATH" ":" prefix (,gst-plugin-path))))
              #t)))))
    (synopsis "Gtk client and libraries for SPICE remote desktop servers")
    (description "Gtk client and libraries for SPICE remote desktop servers.")
    (home-page "http://www.spice-space.org")
    (license license:gpl2)))

(define-public spice
  (package
    (name "spice")
    (version "0.13.1")
    (source (origin
              (method url-fetch)
              (uri (string-append
                "http://www.spice-space.org/download/releases/"
                "spice-" version ".tar.bz2"))
              (sha256
               (base32
                "18hxk47z58cqbix5h477qmvcdmsrwzv984jw4c6fj0ns4h217jwy"))))
    (build-system gnu-build-system)
    (propagated-inputs
      `(("openssl" ,openssl)
        ("pixman" ,pixman)
        ("spice-protocol" ,spice-protocol)))
    (inputs
      `(("glib" ,glib)
        ("libjpeg" ,libjpeg)
        ("lz4" ,lz4)
        ("opus" ,opus)
        ("python" ,python)
        ("spice-gtk" ,spice-gtk)
        ("zlib" ,zlib)))
    (native-inputs
      `(("pkg-config" ,pkg-config)))
    (arguments
      `(#:configure-flags
        '("--disable-celt051"
          "--enable-lz4"
          "--enable-automated-tests")))
    (synopsis "Server implementation of the SPICE protocol")
    (description "SPICE is a remote display system built for virtual
environments which allows you to view a computing 'desktop' environment
not only on the machine where it is running, but from anywhere on the
Internet and from a wide variety of machine architectures.")
    (home-page "http://www.spice-space.org")
    (license license:gpl2)))

(define-public spice-vdagent
  (package
    (name "spice-vdagent")
    (version "0.17.0")
    (source (origin
              (method url-fetch)
              (uri (string-append
                "http://www.spice-space.org/download/releases/"
                "spice-vdagent-" version ".tar.bz2"))
              (sha256
               (base32
                "0gdkyylyg1hksg0i0anvznqfli2q39335fnrmcd6847frpc8njpi"))
              (patches (search-patches "spice-vdagent-localstatedir.patch"))))
    (build-system gnu-build-system)
    (inputs
      `(("alsa-lib" ,alsa-lib)
        ("dbus" ,dbus)
        ("glib" ,glib)
        ("libpciaccess" ,libpciaccess)
        ("libx11" ,libx11)
        ("libxext" ,libxext)
        ("libxfixes" ,libxfixes)
        ("libxinerama" ,libxinerama)
        ("libxrandr" ,libxrandr)
        ("spice-protocol" ,spice-protocol)))
    (native-inputs
      `(("pkg-config" ,pkg-config)))
    (arguments
     '(#:configure-flags '("--localstatedir=/var")))
    (synopsis "Spice agent for linux")
    (description "Enables sharing the clipboard and guest display resolution
scaling on graphical console window resize.")
    (home-page "http://www.spice-space.org")
    (license license:gpl2)))

(define-public virt-viewer
  (package
    (name "virt-viewer")
    (version "4.0")
    (source (origin
              (method url-fetch)
              (uri (string-append
                "https://virt-manager.org/download/sources/virt-viewer/"
                "virt-viewer-" version ".tar.gz"))
              (sha256
               (base32
                "07zsi1fqg05mag1ayniaqj25fzb6dxg76d4ka5196lq4l477nhhw"))))
    (build-system gnu-build-system)
    (inputs
      `(("gtk+" ,gtk+)
        ("libcap" ,libcap)
        ("libxml2" ,libxml2)
        ("openssl" ,openssl)
        ("perl" ,perl)
        ("spice-gtk" ,spice-gtk)))
    (native-inputs
      `(("glib:bin" ,glib "bin")
        ("intltool" ,intltool)
        ("pkg-config" ,pkg-config)))
    (arguments
      `(#:configure-flags
        '("--with-spice-gtk")
        #:phases
         (modify-phases %standard-phases
           (add-after
            'install 'wrap-remote-viewer
            (lambda* (#:key inputs outputs #:allow-other-keys)
              (let ((out             (assoc-ref outputs "out"))
                    (gst-plugin-path (getenv "GST_PLUGIN_SYSTEM_PATH")))
                (wrap-program (string-append out "/bin/remote-viewer")
                  `("GST_PLUGIN_SYSTEM_PATH" ":" prefix (,gst-plugin-path))))
              #t)))))
    (synopsis "Graphical console client for virtual machines")
    (description "Graphical console client for virtual machines using spice or
vnc.")
    (home-page "https://virt-manager.org")
    (license license:gpl2)))

debug log:

solving 7bbe0a1 ...
found 7bbe0a1 in https://yhetil.org/guix-devel/20160723131859.13525-7-david@craven.ch/
found 182e76b in https://yhetil.org/guix-devel/20160723131859.13525-6-david@craven.ch/
found ccecb23 in https://yhetil.org/guix-devel/20160723131859.13525-5-david@craven.ch/
found aa331db in https://yhetil.org/guix-devel/20160723131859.13525-4-david@craven.ch/
found b571818 in https://yhetil.org/guix-devel/20160723131859.13525-3-david@craven.ch/
found 8979d32 in https://yhetil.org/guix-devel/20160723131859.13525-2-david@craven.ch/
found 3c81a93 in https://yhetil.org/guix-devel/20160723131859.13525-1-david@craven.ch/

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


applying [2/7] https://yhetil.org/guix-devel/20160723131859.13525-2-david@craven.ch/
diff --git a/gnu/packages/spice.scm b/gnu/packages/spice.scm
index 3c81a93..8979d32 100644


applying [3/7] https://yhetil.org/guix-devel/20160723131859.13525-3-david@craven.ch/
diff --git a/gnu/packages/spice.scm b/gnu/packages/spice.scm
index 8979d32..b571818 100644


applying [4/7] https://yhetil.org/guix-devel/20160723131859.13525-4-david@craven.ch/
diff --git a/gnu/packages/spice.scm b/gnu/packages/spice.scm
index b571818..aa331db 100644


applying [5/7] https://yhetil.org/guix-devel/20160723131859.13525-5-david@craven.ch/
diff --git a/gnu/packages/spice.scm b/gnu/packages/spice.scm
index aa331db..ccecb23 100644


applying [6/7] https://yhetil.org/guix-devel/20160723131859.13525-6-david@craven.ch/
diff --git a/gnu/packages/spice.scm b/gnu/packages/spice.scm
index ccecb23..182e76b 100644


applying [7/7] https://yhetil.org/guix-devel/20160723131859.13525-7-david@craven.ch/
diff --git a/gnu/packages/spice.scm b/gnu/packages/spice.scm
index 182e76b..7bbe0a1 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.
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.
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.
Checking patch gnu/packages/spice.scm...
Applied patch gnu/packages/spice.scm cleanly.

index at:
100644 7bbe0a1aaca7cd94d847b57664d4d242d64d139e	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).