~ruther/guix-local

d06fc008bdb86169d951721bbb4604948368d7c2 — Efraim Flashner 10 years ago e8ea01d
gnu: tiled: Use 'modify-phases'.

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

M gnu/packages/game-development.scm
M gnu/packages/game-development.scm => gnu/packages/game-development.scm +6 -7
@@ 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