guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: tiled: Use 'modify-phases'.


From: Efraim Flashner
Subject: 02/02: gnu: tiled: Use 'modify-phases'.
Date: Tue, 01 Mar 2016 13:01:58 +0000

efraim pushed a commit to branch master
in repository guix.

commit d06fc008bdb86169d951721bbb4604948368d7c2
Author: Efraim Flashner <address@hidden>
Date:   Tue Mar 1 13:34:12 2016 +0200

    gnu: tiled: Use 'modify-phases'.
    
    * gnu/packages/game-development.scm (tiled)[arguments]: Use 'modify-phases'.
---
 gnu/packages/game-development.scm |   13 ++++++-------
 1 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/game-development.scm 
b/gnu/packages/game-development.scm
index 773c517..0a58a7e 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -142,13 +142,12 @@ provide connectivity for client applications written in 
any language.")
               ("zlib" ,zlib)))
     (arguments
      '(#:phases
-       (alist-replace
-        'configure
-        (lambda* (#:key outputs #:allow-other-keys)
-          (let ((out (assoc-ref outputs "out")))
-            (system* "qmake"
-                     (string-append "PREFIX=" out))))
-        %standard-phases)))
+       (modify-phases %standard-phases
+         (replace 'configure
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let ((out (assoc-ref outputs "out")))
+               (system* "qmake"
+                        (string-append "PREFIX=" out))))))))
     (home-page "http://www.mapeditor.org/";)
     (synopsis "Tile map editor")
     (description



reply via email to

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