gnu: dtach: Use 'modify-phases'.

* gnu/packages/screen.scm (dtach)[arguments]: Use 'modify-phases'.
This commit is contained in:
Efraim Flashner 2016-05-30 10:21:48 +03:00
parent 4b23c4b36a
commit f228aa1543
No known key found for this signature in database
GPG Key ID: F4C1D3917EACEE93
1 changed files with 6 additions and 6 deletions

View File

@ -79,12 +79,12 @@ view to show two terminals at once.")
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
;; No install target. ;; No install target.
'(#:phases (alist-replace '(#:phases
'install (modify-phases %standard-phases
(lambda* (#:key outputs #:allow-other-keys) (replace 'install
(let ((out (assoc-ref outputs "out"))) (lambda* (#:key outputs #:allow-other-keys)
(install-file "dtach" (string-append out "/bin")))) (let ((out (assoc-ref outputs "out")))
%standard-phases) (install-file "dtach" (string-append out "/bin"))))))
;; No check target. ;; No check target.
#:tests? #f)) #:tests? #f))
(home-page "http://dtach.sourceforge.net/") (home-page "http://dtach.sourceforge.net/")