From d06fc008bdb86169d951721bbb4604948368d7c2 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 1 Mar 2016 13:34:12 +0200 Subject: gnu: tiled: Use 'modify-phases'. * gnu/packages/game-development.scm (tiled)[arguments]: Use 'modify-phases'. --- gnu/packages/game-development.scm | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'gnu/packages/game-development.scm') diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index 773c517079..0a58a7efa5 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -142,13 +142,12 @@ (define-public tiled ("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 -- cgit v1.2.3