~ruther/guix-local

c8cd850c87f50b476dc87166e09207426efd8409 — Marius Bakke 9 years ago cff0ccf
gnu: python-xcffib: Use 'modify-phases' syntax.

* gnu/packages/python.scm (python-xcffib)[arguments]: Use 'modify-phases'.
1 files changed, 9 insertions(+), 9 deletions(-)

M gnu/packages/python.scm
M gnu/packages/python.scm => gnu/packages/python.scm +9 -9
@@ 4230,15 4230,15 @@ a front-end for C compilers or analysis tools.")
       ("python-six" ,python-six)))
    (arguments
     `(#:phases
       (alist-cons-after
        'install 'install-doc
        (lambda* (#:key outputs #:allow-other-keys)
          (let ((doc (string-append (assoc-ref outputs "out") "/share"
                                    "/doc/" ,name "-" ,version)))
            (mkdir-p doc)
            (copy-file "README.md"
                       (string-append doc "/README.md"))))
        %standard-phases)))
       (modify-phases %standard-phases
         (add-after 'install 'install-doc
           (lambda* (#:key outputs #:allow-other-keys)
             (let ((doc (string-append (assoc-ref outputs "out") "/share"
                                       "/doc/" ,name "-" ,version)))
               (mkdir-p doc)
               (copy-file "README.md"
                          (string-append doc "/README.md"))
               #t))))))
    (home-page "https://github.com/tych0/xcffib")
    (synopsis "XCB Python bindings")
    (description