mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: libmbim: Update to 1.30.0.
* gnu/packages/freedesktop.scm (libmbim): Update to 1.30.0. [source]: Switch to git-fetch. [build-system]: Switch to meson-build-system. [native-inputs]: Add gobject-introspection, help2man. Replace python-wrapper with python-minimal. [inputs]: Add bash-completion. Change-Id: I607bff667a057e58bebb2f706d7021a4d1c8d763
This commit is contained in:
parent
13362af4bd
commit
3e469ff974
1 changed files with 21 additions and 14 deletions
|
@ -1901,23 +1901,30 @@ these interfaces, based on the useradd, usermod and userdel commands.")
|
||||||
(define-public libmbim
|
(define-public libmbim
|
||||||
(package
|
(package
|
||||||
(name "libmbim")
|
(name "libmbim")
|
||||||
(version "1.26.4")
|
(version "1.30.0")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append
|
(method git-fetch)
|
||||||
"https://www.freedesktop.org/software/libmbim/"
|
(uri (git-reference
|
||||||
"libmbim-" version ".tar.xz"))
|
(url "https://gitlab.freedesktop.org/mobile-broadband/libmbim")
|
||||||
(sha256
|
(commit version)))
|
||||||
(base32
|
(file-name (git-file-name name version))
|
||||||
"1ncaarl4lgc7i52rwz50yq701wk2rr478cjybxbifsjqqk2cx27n"))))
|
(sha256
|
||||||
(build-system gnu-build-system)
|
(base32
|
||||||
|
"00kbjvpka51zrfjigzd3rk6r4x8hkg1xfj7d9zl9lccysnxyjx5h"))))
|
||||||
|
(build-system meson-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list `(,glib "bin") ; for glib-mkenums
|
(list `(,glib "bin") ;for glib-mkenums
|
||||||
pkg-config python-wrapper))
|
gobject-introspection
|
||||||
|
help2man
|
||||||
|
pkg-config
|
||||||
|
python-minimal))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list glib)) ; required by mbim-glib.pc
|
(list glib)) ;required by mbim-glib.pc
|
||||||
(inputs
|
(inputs
|
||||||
(list libgudev))
|
(list
|
||||||
|
bash-completion
|
||||||
|
libgudev))
|
||||||
(synopsis "Library to communicate with MBIM-powered modems")
|
(synopsis "Library to communicate with MBIM-powered modems")
|
||||||
(home-page "https://www.freedesktop.org/wiki/Software/libmbim/")
|
(home-page "https://www.freedesktop.org/wiki/Software/libmbim/")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue