gnu: dtach: Install man page.

* gnu/packages/screen.scm (dtach)[arguments]: Install the dtach(1) man page.
This commit is contained in:
Tobias Geerinckx-Rice 2017-08-30 04:45:43 +02:00
parent 249ab8cc3e
commit b85a66b4d5
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -5,6 +5,7 @@
;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
;;;
;;; This file is part of GNU Guix.
;;;
@ -85,7 +86,8 @@ (define-public dtach
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
(install-file "dtach" (string-append out "/bin"))))))
(install-file "dtach" (string-append out "/bin"))
(install-file "dtach.1" (string-append out "/share/man/man1"))))))
;; No check target.
#:tests? #f))
(home-page "http://dtach.sourceforge.net/")