mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: Add gnome-user-share.
* gnu/packages/gnome.scm (gnome-user-share): New variable.
This commit is contained in:
parent
a65cc579b9
commit
b5f013929a
1 changed files with 40 additions and 0 deletions
|
@ -417,6 +417,46 @@ (define-public gnome-initial-setup
|
|||
(home-page "https://gitlab.gnome.org/GNOME/gnome-initial-setup")
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public gnome-user-share
|
||||
(package
|
||||
(name "gnome-user-share")
|
||||
(version "3.33.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||
(version-major+minor version) "/"
|
||||
name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0lf790pyamdyj7180ils8vizjl8brxcg7jsm1iavfp9ay4wa8mz7"))))
|
||||
(build-system meson-build-system)
|
||||
(arguments
|
||||
`(#:glib-or-gtk? #t
|
||||
#:configure-flags
|
||||
`("-Dsystemd=false"
|
||||
;; Enable nautilus extension for file sharing.
|
||||
"-Dnautilus_extension=true")))
|
||||
(native-inputs
|
||||
`(("gettext" ,gettext-minimal)
|
||||
("glib:bin" ,glib "bin")
|
||||
("gobject-introspection" ,gobject-introspection)
|
||||
("gtk+:bin" ,gtk+ "bin")
|
||||
("pkg-config" ,pkg-config)
|
||||
("yelp-tools" ,yelp-tools)))
|
||||
(inputs
|
||||
`(("glib" ,glib)
|
||||
("gnome-bluetooth" ,gnome-bluetooth)
|
||||
("gtk+" ,gtk+)
|
||||
("libcanberra" ,libcanberra)
|
||||
("libnotify" ,libnotify)
|
||||
("nautilus" ,nautilus))) ; For nautilus extension.
|
||||
(synopsis "File sharing for GNOME desktop")
|
||||
(description "GNOME User Share is a small package that binds together
|
||||
various free software projects to bring easy to use user-level file
|
||||
sharing to the masses.")
|
||||
(home-page "https://gitlab.gnome.org/GNOME/gnome-user-share")
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public gnome-menus
|
||||
(package
|
||||
(name "gnome-menus")
|
||||
|
|
Loading…
Reference in a new issue