mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: caja-extensions: update to 1.28.0.
* gnu/packages/mate.scm (caja-extensions): Update to 1.28.0 [arguments]<#:configure-flags>: Disable AV support as needed gstreamer components are Rust packages not in Guix at this time. Change-Id: If48fcc79618654fd29ed6222517509224fa78e37 Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
parent
bd43c75746
commit
f086d83cb6
1 changed files with 37 additions and 28 deletions
|
@ -51,6 +51,7 @@
|
||||||
#:use-module (gnu packages glib)
|
#:use-module (gnu packages glib)
|
||||||
#:use-module (gnu packages gnome)
|
#:use-module (gnu packages gnome)
|
||||||
#:use-module (gnu packages gnupg)
|
#:use-module (gnu packages gnupg)
|
||||||
|
#:use-module (gnu packages gstreamer)
|
||||||
#:use-module (gnu packages gtk)
|
#:use-module (gnu packages gtk)
|
||||||
#:use-module (gnu packages image)
|
#:use-module (gnu packages image)
|
||||||
#:use-module (gnu packages imagemagick)
|
#:use-module (gnu packages imagemagick)
|
||||||
|
@ -846,47 +847,55 @@ icons on the MATE desktop. It works on local and remote file systems.")
|
||||||
(define-public caja-extensions
|
(define-public caja-extensions
|
||||||
(package
|
(package
|
||||||
(name "caja-extensions")
|
(name "caja-extensions")
|
||||||
(version "1.26.1")
|
(version "1.28.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://mate/" (version-major+minor version) "/"
|
(uri (string-append "mirror://mate/"
|
||||||
"caja-extensions-" version ".tar.xz"))
|
(version-major+minor version)
|
||||||
|
"/"
|
||||||
|
"caja-extensions-"
|
||||||
|
version
|
||||||
|
".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "086mw7650n8blnr2wkg9xdb6lhwqamcbkk5575i2s90hzbiik72q"))))
|
(base32 "0x9ikq8biaq08wzj0qqpmy8k5w7axqimigfgf7i5z0s00xg6r66j"))))
|
||||||
(build-system glib-or-gtk-build-system)
|
(build-system glib-or-gtk-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags (list "--enable-sendto"
|
`(#:configure-flags (list "--enable-sendto"
|
||||||
;; TODO: package "gupnp" to enable 'upnp', package
|
;; TODO: package "gupnp" to enable 'upnp', package
|
||||||
;; "gksu" to enable 'gksu'.
|
;; "gksu" to enable 'gksu'.
|
||||||
(string-append "--with-sendto-plugins=removable-devices,"
|
(string-append
|
||||||
"caja-burn,emailclient,pidgin,gajim")
|
"--with-sendto-plugins=removable-devices,"
|
||||||
|
"caja-burn,emailclient,pidgin,gajim")
|
||||||
"--enable-image-converter"
|
"--enable-image-converter"
|
||||||
"--enable-open-terminal" "--enable-share"
|
"--enable-open-terminal"
|
||||||
"--enable-wallpaper" "--enable-xattr-tags"
|
"--enable-share"
|
||||||
|
"--enable-wallpaper"
|
||||||
|
"--enable-xattr-tags"
|
||||||
|
"--enable-av=yes"
|
||||||
|
|
||||||
(string-append "--with-cajadir="
|
(string-append "--with-cajadir="
|
||||||
(assoc-ref %outputs "out")
|
(assoc-ref %outputs "out")
|
||||||
"/lib/caja/extensions-2.0/"))))
|
"/lib/caja/extensions-2.0/"))))
|
||||||
(native-inputs
|
(native-inputs `(("intltool" ,intltool)
|
||||||
`(("intltool" ,intltool)
|
("gettext" ,gettext-minimal)
|
||||||
("gettext" ,gettext-minimal)
|
("glib:bin" ,glib "bin")
|
||||||
("glib:bin" ,glib "bin")
|
("gobject-introspection" ,gobject-introspection)
|
||||||
("gobject-introspection" ,gobject-introspection)
|
("gtk-doc" ,gtk-doc)
|
||||||
("gtk-doc" ,gtk-doc)
|
("libxml2" ,libxml2)
|
||||||
("libxml2" ,libxml2)
|
("pkg-config" ,pkg-config)))
|
||||||
("pkg-config" ,pkg-config)))
|
(inputs (list attr
|
||||||
(inputs
|
brasero
|
||||||
(list attr
|
caja
|
||||||
brasero
|
dbus
|
||||||
caja
|
dbus-glib
|
||||||
dbus
|
gajim ;runtime only?
|
||||||
dbus-glib
|
gst-plugins-base
|
||||||
gajim ;runtime only?
|
gtk+
|
||||||
gtk+
|
graphicsmagick
|
||||||
graphicsmagick
|
mate-desktop
|
||||||
mate-desktop
|
pidgin ;runtime only?
|
||||||
pidgin ;runtime only?
|
startup-notification))
|
||||||
startup-notification))
|
|
||||||
(home-page "https://mate-desktop.org/")
|
(home-page "https://mate-desktop.org/")
|
||||||
(synopsis "Extensions for the File manager Caja")
|
(synopsis "Extensions for the File manager Caja")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue