diff options
author | Rutger Helling <rhelling@mykolab.com> | 2018-06-22 14:55:10 +0200 |
---|---|---|
committer | Rutger Helling <rhelling@mykolab.com> | 2018-06-22 14:57:41 +0200 |
commit | 71d4ba5246ff862366b68cf8d3621e20d94d2f65 (patch) | |
tree | 84cd85584d178c6116a74efab275e9d8275b20ec /gnu/packages/virtualization.scm | |
parent | 8b0f6917b31abc20371f84bff4648dc9b9620040 (diff) | |
download | guix-71d4ba5246ff862366b68cf8d3621e20d94d2f65.tar guix-71d4ba5246ff862366b68cf8d3621e20d94d2f65.tar.gz |
gnu: lookingglass: Update to a11.
* gnu/packages/virtualization.scm (lookingglass): Update to a11.
[native-inputs]: Add 'libconfig', 'nettle'.
[arguments]: Add 'CC=gcc' make-flag.
Diffstat (limited to 'gnu/packages/virtualization.scm')
-rw-r--r-- | gnu/packages/virtualization.scm | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm index b82dcb4c80..c2846c2db1 100644 --- a/gnu/packages/virtualization.scm +++ b/gnu/packages/virtualization.scm @@ -52,6 +52,7 @@ #:use-module (gnu packages libusb) #:use-module (gnu packages linux) #:use-module (gnu packages ncurses) + #:use-module (gnu packages nettle) #:use-module (gnu packages networking) #:use-module (gnu packages package-management) #:use-module (gnu packages perl) @@ -65,6 +66,7 @@ #:use-module (gnu packages sdl) #:use-module (gnu packages spice) #:use-module (gnu packages texinfo) + #:use-module (gnu packages textutils) #:use-module (gnu packages tls) #:use-module (gnu packages web) #:use-module (gnu packages xdisorg) @@ -770,7 +772,7 @@ Machine Protocol.") (define-public lookingglass (package (name "lookingglass") - (version "a10") + (version "a11") (source (origin (method url-fetch) @@ -779,7 +781,7 @@ Machine Protocol.") (file-name (string-append name "-" version)) (sha256 (base32 - "0zlxg9ibzr0a598wr5nl1pb4l7mzsqn8ip72v4frph0vwsm5il6c")))) + "11qwyp332l66sqksqa0z9439yi4accmbq7wjc6kikc5fimdh9wk5")))) (build-system gnu-build-system) (inputs `(("fontconfig" ,fontconfig) ("glu" ,glu) @@ -788,9 +790,12 @@ Machine Protocol.") ("sdl2" ,sdl2) ("sdl2-ttf" ,sdl2-ttf) ("spice-protocol" ,spice-protocol))) - (native-inputs `(("pkg-config" ,pkg-config))) + (native-inputs `(("libconfig" ,libconfig) + ("nettle" ,nettle) + ("pkg-config" ,pkg-config))) (arguments `(#:tests? #f ;; No tests are available. + #:make-flags '("CC=gcc") #:phases (modify-phases %standard-phases (replace 'configure (lambda* (#:key outputs #:allow-other-keys) |