mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 22:16:32 +01:00
gnu: python2-pygtk: fix path to pygobject-codegen-2.0
* gnu/packages/gtk.scm (python2-pygtk)[arguments]: Add phase to patch the path to the pygobject-codegen-2.0 executable.
This commit is contained in:
parent
32158110b0
commit
cb4d3d863b
1 changed files with 22 additions and 14 deletions
|
@ -752,6 +752,14 @@ (define-public python2-pygtk
|
|||
(arguments
|
||||
`(#:tests? #f
|
||||
#:phases (alist-cons-after
|
||||
'configure 'fix-codegen
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(substitute* "pygtk-codegen-2.0"
|
||||
(("^prefix=.*$")
|
||||
(string-append
|
||||
"prefix="
|
||||
(assoc-ref inputs "python-pygobject") "\n"))))
|
||||
(alist-cons-after
|
||||
'install 'install-pth
|
||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
;; pygtk's modules are stored in a subdirectory of python's
|
||||
|
@ -765,7 +773,7 @@ (define-public python2-pygtk
|
|||
(call-with-output-file (string-append site "/pygtk.pth")
|
||||
(lambda (port)
|
||||
(format port "gtk-2.0~%")))))
|
||||
%standard-phases)))
|
||||
%standard-phases))))
|
||||
(home-page "http://www.pygtk.org/")
|
||||
(synopsis "Python bindings for GTK+")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue