guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/04: gnu: ncftp: Use ‘modify-phases’.


From: Tobias Geerinckx-Rice
Subject: 03/04: gnu: ncftp: Use ‘modify-phases’.
Date: Wed, 19 Oct 2016 17:35:38 +0000 (UTC)

nckx pushed a commit to branch master
in repository guix.

commit f5d377326840837e4d66f26ad4de58a974980609
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Wed Oct 19 17:00:35 2016 +0200

    gnu: ncftp: Use ‘modify-phases’.
    
    * gnu/packages/ftp.scm (ncftp): Use the ‘modify-phases’ syntax.
---
 gnu/packages/ftp.scm |   24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/ftp.scm b/gnu/packages/ftp.scm
index 8ef620c..e1e6191 100644
--- a/gnu/packages/ftp.scm
+++ b/gnu/packages/ftp.scm
@@ -100,18 +100,18 @@ reliability in mind.")
                      "free software"))))))
     (build-system gnu-build-system)
     (arguments
-     '(#:phases (alist-replace
-                 'configure
-                 (lambda* (#:key outputs #:allow-other-keys)
-                   ;; This is an old 'configure' script that doesn't
-                   ;; understand variables passed as arguments.
-                   (let ((out (assoc-ref outputs "out")))
-                     (setenv "CONFIG_SHELL" (which "sh"))
-                     (setenv "SHELL" (which "sh"))
-                     (zero? (system* "./configure"
-                                     (string-append "--prefix=" out)))))
-                 %standard-phases)
-       #:tests? #f))                              ;there are no tests
+     '(#:phases
+       (modify-phases %standard-phases
+         (replace 'configure
+                  (lambda* (#:key outputs #:allow-other-keys)
+                    ;; This is an old 'configure' script that doesn't
+                    ;; understand variables passed as arguments.
+                    (let ((out (assoc-ref outputs "out")))
+                      (setenv "CONFIG_SHELL" (which "sh"))
+                      (setenv "SHELL" (which "sh"))
+                      (zero? (system* "./configure"
+                                      (string-append "--prefix=" out)))))))
+                #:tests? #f))           ;there are no tests
     (inputs `(("ncurses" ,ncurses)))
     (home-page "http://www.ncftp.com/ncftp/";)
     (synopsis "Command-line File Transfer Protocol (FTP) client")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]