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)
|
(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/")
|
||||||
|
|
Loading…
Reference in New Issue