mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: modem-manager: Update to 1.22.0.
* gnu/packages/freedesktop.scm (modem-manager): Update to 1.22.0. [source]: Switch to git-fetch. [build-system]: Switch to meson-build-system. [arguments]<#:configure-flags>: Adjust udevdir. Set -Dsystemdsystemunitdir=no, Set -Dvapi=true. [inputs]: Add bash-completion, libqrtr-glib and elogind. [native-inputs]: Remove python; add python-minimal and libxslt. Change-Id: Ife0560eb48f3cceaf22ccc6bb54010074028cddf
This commit is contained in:
parent
beaffa1a3b
commit
13bc3237d8
1 changed files with 27 additions and 15 deletions
|
@ -2011,34 +2011,46 @@ which speak the Qualcomm MSM Interface (QMI) protocol.")
|
||||||
(define-public modem-manager
|
(define-public modem-manager
|
||||||
(package
|
(package
|
||||||
(name "modem-manager")
|
(name "modem-manager")
|
||||||
(version "1.18.12")
|
(version "1.22.0")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append
|
(method git-fetch)
|
||||||
"https://www.freedesktop.org/software/ModemManager/"
|
(uri
|
||||||
"ModemManager-" version ".tar.xz"))
|
(git-reference
|
||||||
|
(url "https://gitlab.freedesktop.org/mobile-broadband/ModemManager")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0c74n5jl1qvq2qlbwzfkgxny8smjcgkid1nhdnl6qnlmbn9f8r5l"))))
|
"0fj4ibjfsxal3xfk3hrj4l9vg7zbj42k9lj7151illl2n3d5ngzw"))))
|
||||||
(build-system gnu-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
#~(list (string-append "--with-udev-base-dir=" #$output "/lib/udev"))))
|
#~(list (string-append "-Dudevdir=" #$output "/lib/udev")
|
||||||
|
"-Dsystemdsystemunitdir=no"
|
||||||
|
"-Dvapi=true")))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list dbus
|
(list dbus
|
||||||
gettext-minimal
|
gettext-minimal
|
||||||
gobject-introspection
|
gobject-introspection
|
||||||
`(,glib "bin") ;for glib-mkenums
|
`(,glib "bin") ;for glib-mkenums
|
||||||
|
libxslt ;for xsltproc
|
||||||
pkg-config
|
pkg-config
|
||||||
python
|
python-minimal
|
||||||
python-dbus
|
python-dbus ;for test
|
||||||
python-pygobject
|
python-pygobject ;for test
|
||||||
vala))
|
vala))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list glib)) ;required by mm-glib.pc
|
(list glib)) ;required by mm-glib.pc
|
||||||
(inputs
|
(inputs
|
||||||
(list libgudev libmbim libqmi polkit))
|
(list bash-completion
|
||||||
|
elogind
|
||||||
|
libgudev
|
||||||
|
libmbim
|
||||||
|
libqmi
|
||||||
|
libqrtr-glib
|
||||||
|
polkit))
|
||||||
(synopsis "Mobile broadband modems manager")
|
(synopsis "Mobile broadband modems manager")
|
||||||
(home-page "https://www.freedesktop.org/wiki/Software/ModemManager/")
|
(home-page "https://www.freedesktop.org/wiki/Software/ModemManager/")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue