mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: linux-libre-headers@5.3: Install.
Upstream has separated building and installing the UAPI headers, and now
requires rsync for the latter.
Follow-up to commit 9e34a5f3b2
.
* gnuk/packages/linux.scm (make-linux-libre-headers*)[native-inputs]:
Add rsync for version 5.3 and higher.
This commit is contained in:
parent
d8de38563b
commit
e8ded3ee6a
1 changed files with 4 additions and 0 deletions
|
@ -116,6 +116,7 @@ (define-module (gnu packages linux)
|
|||
#:use-module (gnu packages xdisorg)
|
||||
#:use-module (gnu packages xorg)
|
||||
#:use-module (gnu packages groff)
|
||||
#:use-module (gnu packages rsync)
|
||||
#:use-module (gnu packages selinux)
|
||||
#:use-module (gnu packages swig)
|
||||
#:use-module (guix build-system cmake)
|
||||
|
@ -482,6 +483,9 @@ (define (make-linux-libre-headers* version source)
|
|||
,@(if (version>=? version "4.16")
|
||||
`(("flex" ,flex)
|
||||
("bison" ,bison))
|
||||
'())
|
||||
,@(if (version>=? version "5.3")
|
||||
`(("rsync" ,rsync))
|
||||
'())))
|
||||
(arguments
|
||||
`(#:modules ((guix build gnu-build-system)
|
||||
|
|
Loading…
Reference in a new issue