mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: libosinfo: Update to 1.7.1.
* gnu/packages/virtualization.scm (libosinfo): Update to 1.7.1. [source]: Switch the release tarball to xz compression. [build-system]: Switch to the meson build system. [arguments]: Switch the configure flags style to work with Meson.
This commit is contained in:
parent
49dbeacb9d
commit
cfd9913fbe
1 changed files with 7 additions and 6 deletions
|
@ -87,6 +87,7 @@ (define-module (gnu packages virtualization)
|
||||||
#:use-module (guix build-system cmake)
|
#:use-module (guix build-system cmake)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix build-system go)
|
#:use-module (guix build-system go)
|
||||||
|
#:use-module (guix build-system meson)
|
||||||
#:use-module (guix build-system python)
|
#:use-module (guix build-system python)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
|
@ -302,21 +303,21 @@ (define-public qemu-minimal-2.10
|
||||||
(define-public libosinfo
|
(define-public libosinfo
|
||||||
(package
|
(package
|
||||||
(name "libosinfo")
|
(name "libosinfo")
|
||||||
(version "1.5.0")
|
(version "1.7.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://releases.pagure.org/libosinfo/libosinfo-"
|
(uri (string-append "https://releases.pagure.org/libosinfo/libosinfo-"
|
||||||
version ".tar.gz"))
|
version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"12b0xj9fz9q91d1pz9xm6aqap5k1ip0m9m3qvqmwjy1lk1kjasdz"))))
|
"1s97sv24bybggjx6hgqba2qdqz3ivfpd4cmkh4zm5y59sim109mv"))))
|
||||||
(build-system gnu-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
`(#:configure-flags
|
||||||
(list (string-append "--with-usb-ids-path="
|
(list (string-append "-Dwith-usb-ids-path="
|
||||||
(assoc-ref %build-inputs "usb.ids"))
|
(assoc-ref %build-inputs "usb.ids"))
|
||||||
(string-append "--with-pci-ids-path="
|
(string-append "-Dwith-pci-ids-path="
|
||||||
(assoc-ref %build-inputs "pci.ids")))))
|
(assoc-ref %build-inputs "pci.ids")))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("libsoup" ,libsoup)
|
`(("libsoup" ,libsoup)
|
||||||
|
|
Loading…
Reference in a new issue