efraim pushed a commit to branch master in repository guix. commit f228aa154304ae56dd229b2bdda02d8582acb763 Author: Efraim Flashner <efr...@flashner.co.il> Date: Mon May 30 10:21:48 2016 +0300
gnu: dtach: Use 'modify-phases'. * gnu/packages/screen.scm (dtach)[arguments]: Use 'modify-phases'. --- gnu/packages/screen.scm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gnu/packages/screen.scm b/gnu/packages/screen.scm index ea17659..5827a1c 100644 --- a/gnu/packages/screen.scm +++ b/gnu/packages/screen.scm @@ -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/")