mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add fwupd-efi.
This package provides a file that is vital for the process of firmware installation and updates on EFI systems using fwupd. * gnu/packages/firmware.scm (fwupd-efi): New variable. Change-Id: I3e610f47016af962b9f2675f645534cca076df2e Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
b482738d6e
commit
865208db3d
1 changed files with 31 additions and 0 deletions
|
@ -211,6 +211,37 @@ assembler, disassembler, and debugging tools for the Linux kernel b43 wireless
|
|||
driver.")
|
||||
(license license:gpl2))))
|
||||
|
||||
(define-public fwupd-efi
|
||||
(package
|
||||
(name "fwupd-efi")
|
||||
(version "1.7")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/fwupd/fwupd-efi")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0n4v6pyg8fmrasdplkb03vjklqhp2k0zn9l8hmjfgibbf6g6mi9x"))))
|
||||
(build-system meson-build-system)
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
,#~(list (string-append
|
||||
"-Defi-libdir=" #$(this-package-input "gnu-efi") "/lib")
|
||||
(string-append
|
||||
"-Defi-includedir=" #$(this-package-input "gnu-efi") "/include/efi")
|
||||
(string-append
|
||||
"-Dpython=" #+(this-package-native-input "python") "/bin/python3")
|
||||
"-Dgenpeimg=enabled")))
|
||||
(native-inputs (list pkg-config python mingw-w64-tools))
|
||||
(inputs (list gnu-efi))
|
||||
(home-page "https://fwupd.org/")
|
||||
(synopsis "EFI Application used by uefi-capsule plugin in fwupd")
|
||||
(description "This package provides an EFI executable for fwupd, which is
|
||||
used in the process of installing and updating firmware.")
|
||||
(license license:lgpl2.1+)))
|
||||
|
||||
(define-public fwupd
|
||||
(package
|
||||
(name "fwupd")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue