gnu: byobu: Return #t from all phases.

* gnu/packages/screen.scm (byobu)[arguments]: Return #t from the
'provide-locale' phase.
This commit is contained in:
Mark H Weaver 2018-04-12 03:25:19 -04:00
parent 5b80aa5945
commit fed9078906
No known key found for this signature in database
GPG key ID: 7CEF29847562C516

View file

@ -125,7 +125,8 @@ (define-public byobu
(lambda* (#:key inputs #:allow-other-keys)
(let ((libc (assoc-ref inputs "libc"))) ;implicit input
(substitute* "usr/bin/byobu.in"
(("locale") (string-append libc "/bin/locale"))))))
(("locale") (string-append libc "/bin/locale")))
#t)))
(add-after
'install 'wrap-python-scripts
(lambda* (#:key inputs outputs #:allow-other-keys)