mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2025-02-18 02:23:12 +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
|
(define-public linux-firmware
|
||||||
(package
|
(package
|
||||||
(name "linux-firmware")
|
(name "linux-firmware")
|
||||||
(version "20240909")
|
(version "20241017")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://kernel.org/linux/kernel/firmware/"
|
(uri (string-append "mirror://kernel.org/linux/kernel/firmware/"
|
||||||
"linux-firmware-" version ".tar.xz"))
|
"linux-firmware-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0wcn6rqmjq80cjjk1k8ygdamdc4xahi29cp0i7gymy1wi0cvsgwl"))))
|
"0wqj6labj16qimdcwjgavsim5a35335gi2yfk0mjy9w3bbpkhv52"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list #:tests? #f
|
(list #:tests? #f
|
||||||
#:strip-binaries? #f
|
#:strip-binaries? #f
|
||||||
#:validate-runpath? #f
|
#:validate-runpath? #f
|
||||||
#:make-flags #~(list (string-append "DESTDIR=" #$output))))
|
#:make-flags #~(list (string-append "DESTDIR=" #$output))
|
||||||
(native-inputs
|
#:phases
|
||||||
(list rdfind))
|
#~(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
|
(home-page
|
||||||
"https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git")
|
"https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git")
|
||||||
(synopsis "Nonfree firmware blobs for Linux")
|
(synopsis "Nonfree firmware blobs for Linux")
|
||||||
|
|
Loading…
Add table
Reference in a new issue