mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-12 09:56:14 -05:00
gnu: file-roller: Update to 3.42.0.
* gnu/packages/gnome.scm (file-roller): Update to 3.42.0. [arguments]: New field. [native-inputs]: Replace intltool with gettext-minimal. Remove gtk+:bin. [inputs]: Remove gdk-pixbuf. Add libhandy.
This commit is contained in:
parent
0122f1e294
commit
f05326d5c0
1 changed files with 13 additions and 8 deletions
|
@ -7410,7 +7410,7 @@ (define-public shotwell
|
||||||
(define-public file-roller
|
(define-public file-roller
|
||||||
(package
|
(package
|
||||||
(name "file-roller")
|
(name "file-roller")
|
||||||
(version "3.40.0")
|
(version "3.42.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnome/sources/file-roller/"
|
(uri (string-append "mirror://gnome/sources/file-roller/"
|
||||||
|
@ -7418,22 +7418,27 @@ (define-public file-roller
|
||||||
"file-roller-" version ".tar.xz"))
|
"file-roller-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"039w1dcpa5ypmv6sm634alk9vbcdkyvy595vkh5gn032jsiqca2a"))))
|
"1iq24g2z7kf1a6kn9asp96lc59r8pxxjvcmm5r7zy47cadnqwhqw"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
|
(arguments
|
||||||
|
(list #:glib-or-gtk? #t
|
||||||
|
#:phases #~(modify-phases %standard-phases
|
||||||
|
(add-before 'install 'disable-gtk-update-icon-cache
|
||||||
|
(lambda _
|
||||||
|
(setenv "DESTDIR" "/"))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list desktop-file-utils ; for update-desktop-database
|
(list desktop-file-utils
|
||||||
intltool
|
gettext-minimal
|
||||||
|
`(,glib "bin")
|
||||||
itstool
|
itstool
|
||||||
pkg-config
|
pkg-config
|
||||||
python
|
python))
|
||||||
`(,gtk+ "bin") ; gtk-update-icon-cache
|
|
||||||
`(,glib "bin")))
|
|
||||||
;; TODO: Add libnautilus.
|
;; TODO: Add libnautilus.
|
||||||
(inputs
|
(inputs
|
||||||
(list gtk+
|
(list gtk+
|
||||||
gdk-pixbuf
|
|
||||||
json-glib
|
json-glib
|
||||||
libarchive
|
libarchive
|
||||||
|
libhandy
|
||||||
libnotify
|
libnotify
|
||||||
nettle
|
nettle
|
||||||
libxml2))
|
libxml2))
|
||||||
|
|
Loading…
Reference in a new issue