mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 06:37:08 +01:00
gnu: mmm: Fix the build.
* gnu/packages/graphics.scm (mmm): Fix the build. [arguments]: Add "patch-meson-build" phase. [home-page]: Fix the URL. Change-Id: If6f1a255e864669a10c646ee0d991e6fabdcb6b9 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
98545ea115
commit
7aecfa9462
1 changed files with 11 additions and 1 deletions
|
@ -162,6 +162,16 @@ (define-public mmm
|
|||
(sha256
|
||||
(base32 "1xmcv6rwinqsbr863rgl9005h2jlmd7k2qrwsc1h4fb8r61ykpjl"))))
|
||||
(build-system meson-build-system)
|
||||
(arguments
|
||||
(list #:phases #~(modify-phases %standard-phases
|
||||
;; XXX: Meson build fails due to a misspelling of
|
||||
;; "description" keyword in the configuration. This phase
|
||||
;; fixes that.
|
||||
(add-after 'unpack 'patch-meson-build
|
||||
(lambda _
|
||||
(substitute* "meson.build"
|
||||
(("not stable, Description:")
|
||||
"not stable, description:")))))))
|
||||
(native-inputs
|
||||
(list luajit pkg-config))
|
||||
(inputs
|
||||
|
@ -169,7 +179,7 @@ (define-public mmm
|
|||
(synopsis "Memory Mapped Machine")
|
||||
(description "MMM is a shared memory protocol for virtualising access to
|
||||
framebuffer graphics, audio output and input event.")
|
||||
(home-page "https://github.com/hodefoting/mrg")
|
||||
(home-page "https://github.com/hodefoting/mmm")
|
||||
(license license:isc)))
|
||||
|
||||
(define-public directfb
|
||||
|
|
Loading…
Reference in a new issue