mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: kbd: Return #t from all phases.
* gnu/packages/linux.scm (kbd)[arguments]: Return #t from all phases.
This commit is contained in:
parent
d6acc9f8fb
commit
0d47fdf872
1 changed files with 4 additions and 2 deletions
|
@ -1900,7 +1900,8 @@ (define-public kbd
|
|||
(("gzip")
|
||||
(string-append gzip "/bin/gzip"))
|
||||
(("bzip2")
|
||||
(string-append bzip2 "/bin/bzip2"))))))
|
||||
(string-append bzip2 "/bin/bzip2")))
|
||||
#t)))
|
||||
(add-after 'install 'post-install
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
;; Make sure these programs find their comrades.
|
||||
|
@ -1909,7 +1910,8 @@ (define-public kbd
|
|||
(for-each (lambda (prog)
|
||||
(wrap-program (string-append bin "/" prog)
|
||||
`("PATH" ":" prefix (,bin))))
|
||||
'("unicode_start" "unicode_stop"))))))))
|
||||
'("unicode_start" "unicode_stop"))
|
||||
#t))))))
|
||||
(inputs `(("check" ,check)
|
||||
("gzip" ,gzip)
|
||||
("bzip2" ,bzip2)
|
||||
|
|
Loading…
Reference in a new issue