mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-18 17:01:51 -05:00
gnu: gnome-bluetooth: Update to 42.4.
* gnu/packages/gnome.scm (gnome-bluetooth): Update to 42.4. [arguments]: Delete field. [native-inputs]: Remove labels. Remove gtk+:bin. Replace intltool with gettext-minimal. [propagated-inputs]: Replace gtk+ with gtk. Add libadwaita. [inputs]: Remove libcanberra. Add gsound, pango-next and upower.
This commit is contained in:
parent
7b04616664
commit
b94e1572a5
1 changed files with 20 additions and 15 deletions
|
@ -8698,7 +8698,7 @@ (define-public libgtop
|
|||
(define-public gnome-bluetooth
|
||||
(package
|
||||
(name "gnome-bluetooth")
|
||||
(version "3.34.5")
|
||||
(version "42.4")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://gnome/sources/gnome-bluetooth/"
|
||||
|
@ -8706,24 +8706,29 @@ (define-public gnome-bluetooth
|
|||
"gnome-bluetooth-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1a9ynlwwkb3wpg293ym517vmrkk63y809mmcv9a21k5yr199x53c"))))
|
||||
"1p5wq3rh9p7fhka57qcds6lvphd26yyc18ilncx95jbcvcfcyvqx"))))
|
||||
(build-system meson-build-system)
|
||||
(arguments
|
||||
(list #:meson meson-0.60))
|
||||
(native-inputs
|
||||
`(("glib:bin" ,glib "bin") ; for gdbus-codegen, etc.
|
||||
("gtk+" ,gtk+ "bin") ; gtk-update-icon-cache
|
||||
("gobject-introspection" ,gobject-introspection)
|
||||
("intltool" ,intltool)
|
||||
("pkg-config" ,pkg-config)
|
||||
("python" ,python)
|
||||
("python-dbus" ,python-dbus)
|
||||
("xmllint" ,libxml2)))
|
||||
(list gettext-minimal
|
||||
gobject-introspection
|
||||
`(,glib "bin") ;for gdbus-codegen, etc.
|
||||
libxml2
|
||||
pkg-config
|
||||
python
|
||||
python-dbus))
|
||||
(propagated-inputs
|
||||
;; gnome-bluetooth-1.0.pc refers to all these.
|
||||
(list glib gtk+))
|
||||
;; These are all required by the gnome-bluetooth .pc file.
|
||||
(list glib
|
||||
gtk
|
||||
libadwaita))
|
||||
(inputs
|
||||
(list eudev libcanberra libnotify python-dbus))
|
||||
(list eudev
|
||||
gsound
|
||||
libnotify
|
||||
;; TODO: Delete pango-next after it's the default.
|
||||
pango-next
|
||||
python-dbus
|
||||
upower))
|
||||
(synopsis "GNOME Bluetooth subsystem")
|
||||
(home-page "https://wiki.gnome.org/Projects/GnomeBluetooth")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue