mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-15 19:35:25 -05:00
gnu: gvfs: Update to 1.50.2 and modernize definition.
* gnu/packages/gnome.scm (gvfs): Update to 1.50.2. [arguments]: Use gexps. [native-inputs, inputs]: Use new style.
This commit is contained in:
parent
5cd7e0cf26
commit
9173cb522d
1 changed files with 42 additions and 42 deletions
|
@ -6455,7 +6455,7 @@ (define-public libgudev
|
|||
(define-public gvfs
|
||||
(package
|
||||
(name "gvfs")
|
||||
(version "1.48.1")
|
||||
(version "1.50.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://gnome/sources/gvfs/"
|
||||
|
@ -6463,51 +6463,51 @@ (define-public gvfs
|
|||
"gvfs-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1hlxl6368h6nyqp1888szxs9hnpcw98k3h23dgqi29xd38klzsmj"))))
|
||||
"0pmc0vda1ksm9l7v64h4bm8qnv16amb7nifgy0882hzg2n62pmq3"))))
|
||||
(build-system meson-build-system)
|
||||
(arguments
|
||||
`(#:glib-or-gtk? #t
|
||||
(list #:glib-or-gtk? #t
|
||||
#:configure-flags
|
||||
(list "-Dsystemduserunitdir=no"
|
||||
#~(list "-Dsystemduserunitdir=no"
|
||||
"-Dtmpfilesdir=no"
|
||||
;; Otherwise, the RUNPATH will lack the final path component.
|
||||
(string-append "-Dc_link_args=-Wl,-rpath="
|
||||
(assoc-ref %outputs "out") "/lib/gvfs"))))
|
||||
#$output "/lib/gvfs"))))
|
||||
(native-inputs
|
||||
`(("glib:bin" ,glib "bin") ;for glib-genmarshal, etc.
|
||||
("gettext" ,gettext-minimal)
|
||||
("gtk-doc" ,gtk-doc/stable)
|
||||
("pkg-config" ,pkg-config)
|
||||
("xsltproc" ,libxslt)))
|
||||
(list `(,glib "bin") ;for glib-genmarshal, etc.
|
||||
gettext-minimal
|
||||
gtk-doc/stable
|
||||
pkg-config
|
||||
libxslt))
|
||||
(inputs
|
||||
`(("avahi" ,avahi)
|
||||
("docbook-xml" ,docbook-xml-4.2)
|
||||
("docbook-xsl" ,docbook-xsl)
|
||||
("dbus" ,dbus)
|
||||
("elogind" ,elogind)
|
||||
("fuse" ,fuse-3)
|
||||
("gcr" ,gcr)
|
||||
("glib" ,glib)
|
||||
("gnome-online-accounts" ,gnome-online-accounts)
|
||||
("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
|
||||
("libarchive" ,libarchive)
|
||||
("libbluray" ,libbluray)
|
||||
("libcap" ,libcap)
|
||||
("libcdio-paranoia" ,libcdio-paranoia)
|
||||
("libgcrypt" ,libgcrypt)
|
||||
("libgdata" ,libgdata)
|
||||
("libgphoto2" ,libgphoto2)
|
||||
("libgudev" ,libgudev)
|
||||
("libimobiledevice" ,libimobiledevice)
|
||||
("libmtp" ,libmtp)
|
||||
("libnfs" ,libnfs)
|
||||
("libsecret" ,libsecret)
|
||||
("libsmbclient" ,samba)
|
||||
("libsoup" ,libsoup)
|
||||
("libxml2" ,libxml2)
|
||||
("openssh" ,openssh)
|
||||
("polkit" ,polkit)
|
||||
("udisks" ,udisks)))
|
||||
(list avahi
|
||||
docbook-xml-4.2
|
||||
docbook-xsl
|
||||
dbus
|
||||
elogind
|
||||
fuse-3
|
||||
gcr
|
||||
glib
|
||||
gnome-online-accounts
|
||||
gsettings-desktop-schemas
|
||||
libarchive
|
||||
libbluray
|
||||
libcap
|
||||
libcdio-paranoia
|
||||
libgcrypt
|
||||
libgdata
|
||||
libgphoto2
|
||||
libgudev
|
||||
libimobiledevice
|
||||
libmtp
|
||||
libnfs
|
||||
libsecret
|
||||
samba
|
||||
libsoup
|
||||
libxml2
|
||||
openssh
|
||||
polkit
|
||||
udisks))
|
||||
(home-page "https://wiki.gnome.org/gvfs/")
|
||||
(synopsis "Userspace virtual file system for GIO")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue