gnu: dtach: Use 'modify-phases'.
* gnu/packages/screen.scm (dtach)[arguments]: Use 'modify-phases'.
This commit is contained in:
parent
4b23c4b36a
commit
f228aa1543
|
@ -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/")
|
||||
|
|
Loading…
Reference in New Issue