mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add gnome-bluetooth.
* gnu/packages/gnome.scm (gnome-bluetooth): New variable.
This commit is contained in:
parent
8e1dd04f45
commit
b96c42605b
1 changed files with 33 additions and 0 deletions
|
@ -4362,3 +4362,36 @@ (define-public libgtop
|
|||
"LibGTop is a library to get system specific data such as CPU and memory
|
||||
usage and information about running processes.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public gnome-bluetooth
|
||||
(package
|
||||
(name "gnome-bluetooth")
|
||||
(version "3.18.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||
(version-major+minor version) "/"
|
||||
name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0jaa9nbygdvcqp9k4p4iy2g8x3684s4x9k5nbcmmm11jdn4mn7f5"))))
|
||||
(build-system glib-or-gtk-build-system)
|
||||
(native-inputs
|
||||
`(("glib:bin" ,glib "bin") ; for gdbus-codegen, etc.
|
||||
("gobject-introspection" ,gobject-introspection)
|
||||
("intltool" ,intltool)
|
||||
("pkg-config" ,pkg-config)
|
||||
("xmllint" ,libxml2)))
|
||||
(propagated-inputs
|
||||
;; gnome-bluetooth-1.0.pc refers to all these.
|
||||
`(("gtk+" ,gtk+)
|
||||
("udev" ,eudev)))
|
||||
(inputs
|
||||
`(("libcanberra" ,libcanberra)
|
||||
("libnotify" ,libnotify)))
|
||||
(synopsis "GNOME Bluetooth subsystem")
|
||||
(home-page "https://wiki.gnome.org/Projects/GnomeBluetooth")
|
||||
(description
|
||||
"This package contains tools for managing and manipulating Bluetooth
|
||||
devices using the GNOME desktop.")
|
||||
(license license:lgpl2.1+)))
|
||||
|
|
Loading…
Reference in a new issue