mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: ibus: Generate C from Vala sources.
* gnu/packages/ibus.scm (ibus)[native-inputs]: Add vala. [arguments]: Add "delete-generated-files" phase.
This commit is contained in:
parent
590021db3f
commit
d5332e756e
1 changed files with 10 additions and 0 deletions
|
@ -68,6 +68,15 @@ (define-public ibus
|
|||
(substitute* "data/dconf/Makefile.in"
|
||||
(("dconf update") "echo dconf update"))
|
||||
#t))
|
||||
(add-after 'unpack 'delete-generated-files
|
||||
(lambda _
|
||||
(for-each (lambda (file)
|
||||
(let ((c (string-append (string-drop-right file 4) "c")))
|
||||
(when (file-exists? c)
|
||||
(format #t "deleting ~a\n" c)
|
||||
(delete-file c))))
|
||||
(find-files "." "\\.vala"))
|
||||
#t))
|
||||
(add-after 'wrap-program 'wrap-with-additional-paths
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
;; Make sure 'ibus-setup' runs with the correct PYTHONPATH and
|
||||
|
@ -93,6 +102,7 @@ (define-public ibus
|
|||
(native-inputs
|
||||
`(("glib" ,glib "bin") ; for glib-genmarshal
|
||||
("gobject-introspection" ,gobject-introspection) ; for g-ir-compiler
|
||||
("vala" ,vala)
|
||||
("pkg-config" ,pkg-config)))
|
||||
(native-search-paths
|
||||
(list (search-path-specification
|
||||
|
|
Loading…
Reference in a new issue