mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-21 16:08:07 +01:00
nongnu: corrupt-linux: Add infodocs patch.
Fixes #217. Builds of the linux kernel were failing without a recently added patch from Guix to add an infodocs target for make. See commit 82c43b276dd5e60c81ad2c040a9d945befc4bc88. We now use this patch for applicable kernels (version 5.10 or greater) so the 'build-doc' phase succeeds. * nongnu/package/linux.scm (corrupt-linux)[source]: Add patches with "linux-libre-infodocs-target.patch" depending on version with the procedure doc-supported? from (gnu packages linux).
This commit is contained in:
parent
e026dba1da
commit
2e166ea5d2
1 changed files with 8 additions and 1 deletions
|
@ -63,7 +63,14 @@
|
|||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (linux-urls version))
|
||||
(sha256 (base32 hash))))
|
||||
(sha256 (base32 hash))
|
||||
;; By default the linux-libre package will "make infodocs" for
|
||||
;; supported kernels (version > 5.10) which needs the following
|
||||
;; patch. Include the patch if it applies rather than disabling
|
||||
;; the associated "build-doc" phase.
|
||||
(patches (if ((@@ (gnu packages linux) doc-supported?) version)
|
||||
(search-patches "linux-libre-infodocs-target.patch")
|
||||
'()))))
|
||||
(home-page "https://www.kernel.org/")
|
||||
(synopsis "Linux kernel with nonfree binary blobs included")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue