mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: libosinfo: Include operating systems list.
* gnu/packages/virtualization.scm (libosinfo)[inputs]: Add osinfo-db and remove gobject-introspection. [native-inputs]: Add gobject-introspection. [arguments]: Add phase patch. squash! gnu: virt-manager: Include operating systems list. Signed-off-by: Jakub Kądziołka <kuba@kadziolka.net>
This commit is contained in:
parent
a838fa282c
commit
da6f9aceb4
1 changed files with 12 additions and 2 deletions
|
@ -329,14 +329,24 @@ (define-public libosinfo
|
|||
(list (string-append "-Dwith-usb-ids-path="
|
||||
(assoc-ref %build-inputs "usb.ids"))
|
||||
(string-append "-Dwith-pci-ids-path="
|
||||
(assoc-ref %build-inputs "pci.ids")))))
|
||||
(assoc-ref %build-inputs "pci.ids")))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-osinfo-path
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(substitute* "osinfo/osinfo_loader.c"
|
||||
(("path = DATA_DIR.*")
|
||||
(string-append "path = \"" (assoc-ref inputs "osinfo-db")
|
||||
"/share/osinfo\";")))
|
||||
#t)))))
|
||||
(inputs
|
||||
`(("libsoup" ,libsoup)
|
||||
("libxml2" ,libxml2)
|
||||
("libxslt" ,libxslt)
|
||||
("gobject-introspection" ,gobject-introspection)))
|
||||
("osinfo-db" ,osinfo-db)))
|
||||
(native-inputs
|
||||
`(("glib" ,glib "bin") ; glib-mkenums, etc.
|
||||
("gobject-introspection" ,gobject-introspection)
|
||||
("gtk-doc" ,gtk-doc)
|
||||
("vala" ,vala)
|
||||
("intltool" ,intltool)
|
||||
|
|
Loading…
Reference in a new issue