mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01:00
gnu: buildroot-boards: Install support scripts.
* gnu/packages/buildroot.scm (buildroot-boards)[arguments]<#:phases>[install]: Install support scripts.
This commit is contained in:
parent
7b06a3d0ca
commit
5bdd10bdfc
1 changed files with 4 additions and 3 deletions
|
@ -58,9 +58,10 @@ (define-public buildroot-boards
|
|||
(delete 'check)
|
||||
(replace 'install
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((destination (string-append (assoc-ref outputs "out")
|
||||
"/share/buildroot/board")))
|
||||
(copy-recursively "board" destination))
|
||||
(let ((out-share (string-append (assoc-ref outputs "out")
|
||||
"/share/buildroot/")))
|
||||
(copy-recursively "board" (string-append out-share "board"))
|
||||
(copy-recursively "support" (string-append out-share "support")))
|
||||
#t)))))
|
||||
(synopsis "Generate embedded Linux system images")
|
||||
(description "@code{buildroot} generates embedded Linux system images.")
|
||||
|
|
Loading…
Reference in a new issue