mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-16 07:58:01 -05:00
gnu: epiphany: Use new coding style.
* gnu/packages/gnome.scm (epiphany)[arguments]: Convert to list of G-Expressions. [propagated-inputs]: Reindent. [inputs, native-inputs]: Drop labels and reindent.
This commit is contained in:
parent
731f55aa8d
commit
3f922e229b
1 changed files with 52 additions and 54 deletions
|
@ -6714,9 +6714,10 @@ (define-public epiphany
|
||||||
"0b8rhns3b58f8dnp83mm1g933aqf88d8wrfyyp7jq3fihvw2rh4j"))))
|
"0b8rhns3b58f8dnp83mm1g933aqf88d8wrfyyp7jq3fihvw2rh4j"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:glib-or-gtk? #t
|
(list
|
||||||
|
#:glib-or-gtk? #t
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'skip-gtk-update-icon-cache
|
(add-after 'unpack 'skip-gtk-update-icon-cache
|
||||||
;; Don't create 'icon-theme.cache'.
|
;; Don't create 'icon-theme.cache'.
|
||||||
(lambda _
|
(lambda _
|
||||||
|
@ -6737,37 +6738,34 @@ (define-public epiphany
|
||||||
(setenv "DISPLAY" ":1"))))
|
(setenv "DISPLAY" ":1"))))
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
;; Otherwise, the RUNPATH will lack the final 'epiphany' path component.
|
;; Otherwise, the RUNPATH will lack the final 'epiphany' path component.
|
||||||
(list (string-append "-Dc_link_args=-Wl,-rpath="
|
#~(list (string-append "-Dc_link_args=-Wl,-rpath="
|
||||||
(assoc-ref %outputs "out") "/lib/epiphany"))))
|
#$output "/lib/epiphany"))))
|
||||||
(propagated-inputs
|
(propagated-inputs (list dconf))
|
||||||
(list dconf))
|
(native-inputs (list desktop-file-utils ; for update-desktop-database
|
||||||
(native-inputs
|
`(,glib "bin") ; for glib-mkenums
|
||||||
`(("desktop-file-utils" ,desktop-file-utils) ; for update-desktop-database
|
intltool
|
||||||
("glib:bin" ,glib "bin") ; for glib-mkenums
|
itstool
|
||||||
("intltool" ,intltool)
|
pkg-config
|
||||||
("itstool" ,itstool)
|
libxml2
|
||||||
("pkg-config" ,pkg-config)
|
xorg-server-for-tests))
|
||||||
("xmllint" ,libxml2)
|
(inputs (list avahi
|
||||||
("xorg-server" ,xorg-server-for-tests)))
|
gcr
|
||||||
(inputs
|
librsvg ; for loading SVG files
|
||||||
`(("avahi" ,avahi)
|
glib-networking
|
||||||
("gcr" ,gcr)
|
gnome-desktop
|
||||||
("librsvg" ,librsvg) ; for loading SVG files
|
gsettings-desktop-schemas
|
||||||
("glib-networking" ,glib-networking)
|
json-glib
|
||||||
("gnome-desktop" ,gnome-desktop)
|
iso-codes
|
||||||
("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
|
libarchive
|
||||||
("json-glib" ,json-glib)
|
libdazzle
|
||||||
("iso-codes" ,iso-codes)
|
libhandy
|
||||||
("libarchive" ,libarchive)
|
libnotify
|
||||||
("libdazzle" ,libdazzle)
|
libportal
|
||||||
("libhandy" ,libhandy)
|
libsecret
|
||||||
("libnotify" ,libnotify)
|
libxslt
|
||||||
("libportal" ,libportal)
|
nettle ; for hogweed
|
||||||
("libsecret" ,libsecret)
|
sqlite
|
||||||
("libxslt" ,libxslt)
|
webkitgtk-with-libsoup2))
|
||||||
("nettle" ,nettle) ; for hogweed
|
|
||||||
("sqlite" ,sqlite)
|
|
||||||
("webkitgtk" ,webkitgtk-with-libsoup2)))
|
|
||||||
(home-page "https://wiki.gnome.org/Apps/Web")
|
(home-page "https://wiki.gnome.org/Apps/Web")
|
||||||
(synopsis "GNOME web browser")
|
(synopsis "GNOME web browser")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue