mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: usbredir: Add git commit to version.
* gnu/packages/spice.scm (usbredir)[version]: Add commit and revision to version string.
This commit is contained in:
parent
d4db0612dc
commit
273f1c05d8
1 changed files with 41 additions and 37 deletions
|
@ -44,9 +44,13 @@ (define-module (gnu packages spice)
|
||||||
#:use-module (guix utils))
|
#:use-module (guix utils))
|
||||||
|
|
||||||
(define-public usbredir
|
(define-public usbredir
|
||||||
|
(let ((commit "ac80a5971c6318d73d5fba4b5f13d3a9389558c9")
|
||||||
|
(revision "1")) ;Guix package revision
|
||||||
(package
|
(package
|
||||||
(name "usbredir")
|
(name "usbredir")
|
||||||
(version "0.7.1")
|
(version (string-append "0.7.1-" revision "."
|
||||||
|
(string-take commit 7)))
|
||||||
|
;(version "0.7.1")
|
||||||
;(source (origin
|
;(source (origin
|
||||||
; (method url-fetch)
|
; (method url-fetch)
|
||||||
; (uri (string-append
|
; (uri (string-append
|
||||||
|
@ -62,7 +66,7 @@ (define-public usbredir
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "http://cgit.freedesktop.org/spice/usbredir")
|
(url "http://cgit.freedesktop.org/spice/usbredir")
|
||||||
(commit "ac80a5971c6318d73d5fba4b5f13d3a9389558c9")))
|
(commit commit)))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"052fywgi72j68dr5ybldncg4vk8iqfrh58la7iazyxxpph9aag1g"))))
|
"052fywgi72j68dr5ybldncg4vk8iqfrh58la7iazyxxpph9aag1g"))))
|
||||||
|
@ -86,7 +90,7 @@ (define-public usbredir
|
||||||
to a different (virtual) machine than the one to which the USB device is
|
to a different (virtual) machine than the one to which the USB device is
|
||||||
attached.")
|
attached.")
|
||||||
(home-page "http://www.spice-space.org")
|
(home-page "http://www.spice-space.org")
|
||||||
(license (list license:gpl2+ license:lgpl2.0+ license:lgpl2.1+))))
|
(license (list license:gpl2+ license:lgpl2.0+ license:lgpl2.1+)))))
|
||||||
|
|
||||||
(define-public virglrenderer
|
(define-public virglrenderer
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue