gnu: lookingglass: Update to a12.
* gnu/packages/virtualization.scm (lookingglass): Update to a12. [build-system]: Use cmake-build-system. [arguments]: Add 'chdir-to-client phase.
This commit is contained in:
parent
504d9fcb85
commit
6da907193b
|
@ -72,6 +72,7 @@
|
||||||
#:use-module (gnu packages web)
|
#:use-module (gnu packages web)
|
||||||
#:use-module (gnu packages xdisorg)
|
#:use-module (gnu packages xdisorg)
|
||||||
#:use-module (gnu packages xml)
|
#:use-module (gnu packages xml)
|
||||||
|
#:use-module (guix build-system cmake)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix build-system go)
|
#:use-module (guix build-system go)
|
||||||
#:use-module (guix build-system python)
|
#:use-module (guix build-system python)
|
||||||
|
@ -769,7 +770,7 @@ Machine Protocol.")
|
||||||
(define-public lookingglass
|
(define-public lookingglass
|
||||||
(package
|
(package
|
||||||
(name "lookingglass")
|
(name "lookingglass")
|
||||||
(version "a11")
|
(version "a12")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -778,8 +779,8 @@ Machine Protocol.")
|
||||||
(file-name (string-append name "-" version))
|
(file-name (string-append name "-" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"11qwyp332l66sqksqa0z9439yi4accmbq7wjc6kikc5fimdh9wk5"))))
|
"0x57chx83f8pq56d9sfxmc9p4qjm9nqvdyamj41bmy145mxw5w3m"))))
|
||||||
(build-system gnu-build-system)
|
(build-system cmake-build-system)
|
||||||
(inputs `(("fontconfig" ,fontconfig)
|
(inputs `(("fontconfig" ,fontconfig)
|
||||||
("glu" ,glu)
|
("glu" ,glu)
|
||||||
("mesa" ,mesa)
|
("mesa" ,mesa)
|
||||||
|
@ -794,16 +795,17 @@ Machine Protocol.")
|
||||||
`(#:tests? #f ;; No tests are available.
|
`(#:tests? #f ;; No tests are available.
|
||||||
#:make-flags '("CC=gcc")
|
#:make-flags '("CC=gcc")
|
||||||
#:phases (modify-phases %standard-phases
|
#:phases (modify-phases %standard-phases
|
||||||
(replace 'configure
|
(add-before 'configure 'chdir-to-client
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(chdir "client")
|
(chdir "client")
|
||||||
#t))
|
#t))
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(install-file "bin/looking-glass-client"
|
(install-file "looking-glass-client"
|
||||||
(string-append (assoc-ref outputs "out")
|
(string-append (assoc-ref outputs "out")
|
||||||
"/bin"))
|
"/bin"))
|
||||||
#t)))))
|
#t))
|
||||||
|
)))
|
||||||
(home-page "https://looking-glass.hostfission.com")
|
(home-page "https://looking-glass.hostfission.com")
|
||||||
(synopsis "KVM Frame Relay (KVMFR) implementation")
|
(synopsis "KVM Frame Relay (KVMFR) implementation")
|
||||||
(description "Looking Glass allows the use of a KVM (Kernel-based Virtual
|
(description "Looking Glass allows the use of a KVM (Kernel-based Virtual
|
||||||
|
|
Loading…
Reference in New Issue