gnu: python-xcffib: Use 'modify-phases' syntax.

* gnu/packages/python.scm (python-xcffib)[arguments]: Use 'modify-phases'.
This commit is contained in:
Marius Bakke 2016-12-13 19:15:21 +01:00 committed by Leo Famulari
parent cff0ccf9dc
commit c8cd850c87
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -4230,15 +4230,15 @@ (define-public python-xcffib
("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