gnu: dtach: Use 'modify-phases'.

* gnu/packages/screen.scm (dtach)[arguments]: Use 'modify-phases'.
master
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)
(arguments
;; No install target.
'(#:phases (alist-replace
'install
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
(install-file "dtach" (string-append out "/bin"))))
%standard-phases)
'(#:phases
(modify-phases %standard-phases
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
(install-file "dtach" (string-append out "/bin"))))))
;; No check target.
#:tests? #f))
(home-page "http://dtach.sourceforge.net/")