mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: gtk+: Use gexps and replace iso-codes/official with iso-codes.
* gnu/packages/gtk.scm (gtk+) [inputs]: Replace iso-codes/official with iso-codes. [arguments]: Use gexps.
This commit is contained in:
parent
248b0f79c1
commit
affaacf4f4
1 changed files with 54 additions and 55 deletions
|
@ -1023,17 +1023,17 @@ (define-public gtk+
|
||||||
xorg-server-for-tests
|
xorg-server-for-tests
|
||||||
libxslt))
|
libxslt))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:imported-modules ((guix build glib-or-gtk-build-system)
|
(list
|
||||||
|
#:imported-modules `((guix build glib-or-gtk-build-system)
|
||||||
,@%gnu-build-system-modules)
|
,@%gnu-build-system-modules)
|
||||||
#:modules ((guix build utils)
|
#:modules '((guix build utils)
|
||||||
(guix build gnu-build-system)
|
(guix build gnu-build-system)
|
||||||
((guix build glib-or-gtk-build-system) #:prefix glib-or-gtk:))
|
((guix build glib-or-gtk-build-system) #:prefix glib-or-gtk:))
|
||||||
#:disallowed-references (,xorg-server-for-tests)
|
#:disallowed-references (list xorg-server-for-tests)
|
||||||
;; 47 MiB goes to "out" (24 of which is locale data!), and 26 MiB goes
|
;; 47 MiB goes to "out" (24 of which is locale data!), and 26 MiB goes
|
||||||
;; to "doc".
|
;; to "doc".
|
||||||
#:configure-flags (list (string-append "--with-html-dir="
|
#:configure-flags #~(list (string-append "--with-html-dir="
|
||||||
(assoc-ref %outputs "doc")
|
#$output "/share/gtk-doc/html")
|
||||||
"/share/gtk-doc/html")
|
|
||||||
"--enable-cloudproviders"
|
"--enable-cloudproviders"
|
||||||
;; The header file <gdk/gdkwayland.h> is required
|
;; The header file <gdk/gdkwayland.h> is required
|
||||||
;; by gnome-control-center
|
;; by gnome-control-center
|
||||||
|
@ -1043,7 +1043,7 @@ (define-public gtk+
|
||||||
;; This enables the HTML5 websocket backend.
|
;; This enables the HTML5 websocket backend.
|
||||||
"--enable-broadway-backend")
|
"--enable-broadway-backend")
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'generate-gdk-pixbuf-loaders-cache-file
|
(add-after 'unpack 'generate-gdk-pixbuf-loaders-cache-file
|
||||||
(assoc-ref glib-or-gtk:%standard-phases
|
(assoc-ref glib-or-gtk:%standard-phases
|
||||||
'generate-gdk-pixbuf-loaders-cache-file))
|
'generate-gdk-pixbuf-loaders-cache-file))
|
||||||
|
@ -1076,11 +1076,10 @@ (define-public gtk+
|
||||||
(add-after 'install 'move-desktop-files
|
(add-after 'install 'move-desktop-files
|
||||||
;; Move desktop files into 'bin' to avoid cycle references.
|
;; Move desktop files into 'bin' to avoid cycle references.
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let ((out (assoc-ref outputs "out"))
|
(mkdir-p (string-append #$output:bin "/share"))
|
||||||
(bin (assoc-ref outputs "bin")))
|
(rename-file (string-append #$output "/share/applications")
|
||||||
(mkdir-p (string-append bin "/share"))
|
(string-append #$output:bin
|
||||||
(rename-file (string-append out "/share/applications")
|
"/share/applications")))))))
|
||||||
(string-append bin "/share/applications"))))))))
|
|
||||||
(native-search-paths
|
(native-search-paths
|
||||||
(list (search-path-specification
|
(list (search-path-specification
|
||||||
(variable "GUIX_GTK3_PATH")
|
(variable "GUIX_GTK3_PATH")
|
||||||
|
|
Loading…
Reference in a new issue