~ruther/guix-local

f228aa154304ae56dd229b2bdda02d8582acb763 — Efraim Flashner 10 years ago 4b23c4b
gnu: dtach: Use 'modify-phases'.

* gnu/packages/screen.scm (dtach)[arguments]: Use 'modify-phases'.
1 files changed, 6 insertions(+), 6 deletions(-)

M gnu/packages/screen.scm
M gnu/packages/screen.scm => gnu/packages/screen.scm +6 -6
@@ 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/")