mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-22 00:18:07 +01:00
nongnu: linux-firmware: Update to 20241017.
* nongnu/packages/linux.scm (linux-firmware): Update to 20241017. [arguments]<#:phases>: New keyword argument. Add 'patch-out-check_whence.py phase. Signed-off-by: John Kehayias <john.kehayias@protonmail.com>
This commit is contained in:
parent
630dc221ab
commit
15fa7d02b6
1 changed files with 14 additions and 5 deletions
|
@ -315,22 +315,31 @@ stable, responsive and smooth desktop experience.")))
|
|||
(define-public linux-firmware
|
||||
(package
|
||||
(name "linux-firmware")
|
||||
(version "20240909")
|
||||
(version "20241017")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://kernel.org/linux/kernel/firmware/"
|
||||
"linux-firmware-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0wcn6rqmjq80cjjk1k8ygdamdc4xahi29cp0i7gymy1wi0cvsgwl"))))
|
||||
"0wqj6labj16qimdcwjgavsim5a35335gi2yfk0mjy9w3bbpkhv52"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
(list #:tests? #f
|
||||
#:strip-binaries? #f
|
||||
#:validate-runpath? #f
|
||||
#:make-flags #~(list (string-append "DESTDIR=" #$output))))
|
||||
(native-inputs
|
||||
(list rdfind))
|
||||
#:make-flags #~(list (string-append "DESTDIR=" #$output))
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-out-check_whence.py
|
||||
(lambda _
|
||||
;; The 'check_whence.py' script requires git (and the
|
||||
;; repository metadata).
|
||||
(substitute* "copy-firmware.sh"
|
||||
(("./check_whence.py")
|
||||
"true"))))
|
||||
(delete 'configure))))
|
||||
(native-inputs (list rdfind))
|
||||
(home-page
|
||||
"https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git")
|
||||
(synopsis "Nonfree firmware blobs for Linux")
|
||||
|
|
Loading…
Reference in a new issue