gnu: usbredir: Update to 0.8.0.
* gnu/packages/spice.scm (usbredir): Update to 0.8.0. [source]: Use URL-FETCH. [native-inputs]: Remove AUTOCONF, AUTOMAKE and LIBTOOL. [arguments]: Remove.
This commit is contained in:
parent
b4ff75b507
commit
41a659d2ec
|
@ -19,7 +19,6 @@
|
||||||
|
|
||||||
(define-module (gnu packages spice)
|
(define-module (gnu packages spice)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module (gnu packages autotools) ; remove after updating usbredir to 0.7.1+
|
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
#:use-module (gnu packages cyrus-sasl)
|
#:use-module (gnu packages cyrus-sasl)
|
||||||
#:use-module (gnu packages gl)
|
#:use-module (gnu packages gl)
|
||||||
|
@ -40,64 +39,33 @@
|
||||||
#:use-module (gnu packages xml)
|
#:use-module (gnu packages xml)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix git-download) ; remove after updating usbredir to 0.7.1+
|
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
#:use-module (guix utils))
|
#:use-module (guix utils))
|
||||||
|
|
||||||
(define-public usbredir
|
(define-public usbredir
|
||||||
(let ((commit "ac80a5971c6318d73d5fba4b5f13d3a9389558c9")
|
(package
|
||||||
(revision "1")) ;Guix package revision
|
(name "usbredir")
|
||||||
(package
|
(home-page "https://spice-space.org")
|
||||||
(name "usbredir")
|
(version "0.8.0")
|
||||||
(version (string-append "0.7.1-" revision "."
|
(source (origin
|
||||||
(string-take commit 7)))
|
(method url-fetch)
|
||||||
;(version "0.7.1")
|
(uri (string-append home-page "/download/" name "/" name "-"
|
||||||
;(source (origin
|
version ".tar.bz2"))
|
||||||
; (method url-fetch)
|
(sha256
|
||||||
; (uri (string-append
|
(base32
|
||||||
; "http://spice-space.org/download/usbredir/"
|
"002yik1x7kn0427xahvnhjby2np14a6xqw7c3dx530n9h5d9rg47"))))
|
||||||
; "usbredir-" version ".tar.bz2"))
|
(build-system gnu-build-system)
|
||||||
; (sha256
|
(propagated-inputs
|
||||||
; (base32
|
`(("libusb" ,libusb)))
|
||||||
; "1wsnmk4wjpdhbn1zaxg6bmyxspcki2zgy0am9lk037rnl4krwzj0"))))
|
(native-inputs
|
||||||
; FIXME: usbredir 0.7.1 release doesn't build on 32 bit systems.
|
`(("pkg-config" ,pkg-config)))
|
||||||
; issue is fixed in HEAD
|
(synopsis "Tools for sending USB device traffic over a network")
|
||||||
; remove 'autogen phase and autoconf, automake, libtool inputs
|
(description
|
||||||
(source (origin
|
"Usbredir is a network protocol for sending USB device traffic over a
|
||||||
(method git-fetch)
|
network connection. It can be used to redirect traffic from a USB device to a
|
||||||
(uri (git-reference
|
different (virtual) machine than the one to which the USB device is attached.")
|
||||||
(url "https://anongit.freedesktop.org/git/spice/usbredir.git")
|
(license (list license:gpl2+ license:lgpl2.0+ license:lgpl2.1+))))
|
||||||
(commit commit)))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"052fywgi72j68dr5ybldncg4vk8iqfrh58la7iazyxxpph9aag1g"))))
|
|
||||||
(build-system gnu-build-system)
|
|
||||||
(propagated-inputs
|
|
||||||
`(("libusb" ,libusb)))
|
|
||||||
(native-inputs
|
|
||||||
`(("pkg-config" ,pkg-config)
|
|
||||||
("autoconf" ,autoconf)
|
|
||||||
("automake" ,automake)
|
|
||||||
("libtool" ,libtool)))
|
|
||||||
(arguments
|
|
||||||
`(#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-after 'unpack 'autogen
|
|
||||||
(lambda _
|
|
||||||
;; Build without '-Werror', in particular to avoid errors due
|
|
||||||
;; to the use of the deprecated 'libusb_set_debug' function.
|
|
||||||
(substitute* "configure.ac"
|
|
||||||
(("-Werror") ""))
|
|
||||||
(zero? (system* "autoreconf" "-vfi")))))))
|
|
||||||
(synopsis "Tools for sending USB device traffic over a network")
|
|
||||||
(description "Usbredir is a network protocol for sending USB device traffic
|
|
||||||
over a network connection. It can be used to redirect traffic from a USB device
|
|
||||||
to a different (virtual) machine than the one to which the USB device is
|
|
||||||
attached.")
|
|
||||||
(home-page "https://www.spice-space.org")
|
|
||||||
(license (list license:gpl2+ license:lgpl2.0+ license:lgpl2.1+)))))
|
|
||||||
|
|
||||||
(define-public virglrenderer
|
(define-public virglrenderer
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in New Issue