mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: libpanel: Update to 1.2.0.
The fontconfig issue was apparently HOME that was not set. The build system required the documentation command to fail on any warning. * gnu/packages/gtk.scm (libpanel): Update to 1.2.0. [#:configure-flags]: Remove. [#:phases]: Reindent. <set-home>: New phase. [native-inputs]: Reindent. Add gi-docgen. Change-Id: I2a11e9c3e8b480e5ebc9b4e3e4763804c9c6a28c Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
fd25eae79c
commit
1b39a2cdcf
1 changed files with 19 additions and 13 deletions
|
@ -2928,7 +2928,7 @@ Unix desktop environment under X11 as well as Wayland.")
|
||||||
(define-public libpanel
|
(define-public libpanel
|
||||||
(package
|
(package
|
||||||
(name "libpanel")
|
(name "libpanel")
|
||||||
(version "1.0.2")
|
(version "1.2.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -2937,17 +2937,23 @@ Unix desktop environment under X11 as well as Wayland.")
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "10lkysbwg9w0lm1hj7lw4g7y9j8b88kmq07nfgx0r6f319znj12v"))))
|
(base32 "0wal073anl6iviyljyr8pw0m7av4ik6azpmrwzxw4snp95ib27aq"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list #:configure-flags #~(list "-Ddocs=disabled") ;fontconfig issue
|
(list
|
||||||
#:phases #~(modify-phases %standard-phases
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'disable-gtk-update-icon-cache
|
(add-after 'unpack 'disable-gtk-update-icon-cache
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "meson.build"
|
(substitute* "meson.build"
|
||||||
(("gtk_update_icon_cache: true")
|
(("gtk_update_icon_cache: true")
|
||||||
"gtk_update_icon_cache: false")))))))
|
"gtk_update_icon_cache: false"))))
|
||||||
(native-inputs (list `(,glib "bin")
|
(add-before 'build 'set-home
|
||||||
|
(lambda _
|
||||||
|
(setenv "HOME" (getcwd)))))))
|
||||||
|
(native-inputs
|
||||||
|
(list gi-docgen
|
||||||
|
`(,glib "bin")
|
||||||
gobject-introspection
|
gobject-introspection
|
||||||
pkg-config
|
pkg-config
|
||||||
vala))
|
vala))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue