From f228aa154304ae56dd229b2bdda02d8582acb763 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 30 May 2016 10:21:48 +0300 Subject: 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(-) (limited to 'gnu/packages/screen.scm') diff --git a/gnu/packages/screen.scm b/gnu/packages/screen.scm index ea17659b1b..5827a1c53e 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/") -- cgit v1.2.3