mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: python-screenkey: Add 'bash' input for 'wrap-program'.
It is required for cross-compilation. * gnu/packages/python-xyz.scm (python-screenkey)[inputs]: Add 'bash-minimal'. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
c2dcce11d1
commit
cd5ad36f13
1 changed files with 3 additions and 3 deletions
|
@ -33556,8 +33556,7 @@ (define-public python-screenkey
|
||||||
(string-append x11 "/lib/libX11.so.6")))
|
(string-append x11 "/lib/libX11.so.6")))
|
||||||
(substitute* "Screenkey/xlib.py"
|
(substitute* "Screenkey/xlib.py"
|
||||||
(("libXtst.so.6")
|
(("libXtst.so.6")
|
||||||
(string-append xtst "/lib/libXtst.so.6")))
|
(string-append xtst "/lib/libXtst.so.6"))))))
|
||||||
#t)))
|
|
||||||
(add-after 'install 'wrap-screenkey
|
(add-after 'install 'wrap-screenkey
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(wrap-program
|
(wrap-program
|
||||||
|
@ -33566,7 +33565,8 @@ (define-public python-screenkey
|
||||||
`("GI_TYPELIB_PATH"
|
`("GI_TYPELIB_PATH"
|
||||||
":" prefix (,(getenv "GI_TYPELIB_PATH")))))))))
|
":" prefix (,(getenv "GI_TYPELIB_PATH")))))))))
|
||||||
(inputs
|
(inputs
|
||||||
(list python-distutils-extra
|
(list bash-minimal
|
||||||
|
python-distutils-extra
|
||||||
python-tokenize-rt
|
python-tokenize-rt
|
||||||
libx11
|
libx11
|
||||||
libxtst
|
libxtst
|
||||||
|
|
Loading…
Reference in a new issue