gnu: python-xdo: Use libc already in build environment.
* gnu/packages/python-xyz.scm (python-xdo)[arguments]: Find reference to 'libc' input. [inputs]: Remove glibc.
parent
b8aa431382
commit
2c9787086a
|
@ -14315,7 +14315,7 @@ in pure Python.")
|
||||||
(assoc-ref inputs "xdotool")
|
(assoc-ref inputs "xdotool")
|
||||||
"/lib/libxdo.so"))
|
"/lib/libxdo.so"))
|
||||||
(libc (string-append
|
(libc (string-append
|
||||||
(assoc-ref inputs "glibc")
|
(assoc-ref inputs "libc")
|
||||||
"/lib/libc.so.6")))
|
"/lib/libc.so.6")))
|
||||||
(substitute* "xdo/_xdo.py"
|
(substitute* "xdo/_xdo.py"
|
||||||
(("find_library\\(\"xdo\"\\)")
|
(("find_library\\(\"xdo\"\\)")
|
||||||
|
@ -14328,7 +14328,6 @@ in pure Python.")
|
||||||
(list python-six))
|
(list python-six))
|
||||||
(inputs
|
(inputs
|
||||||
`(("xdotool" ,xdotool)
|
`(("xdotool" ,xdotool)
|
||||||
("glibc" ,glibc)
|
|
||||||
("libX11" ,libx11)))
|
("libX11" ,libx11)))
|
||||||
(home-page "https://tracker.debian.org/pkg/python-xdo")
|
(home-page "https://tracker.debian.org/pkg/python-xdo")
|
||||||
(synopsis "Python library for simulating X11 keyboard/mouse input")
|
(synopsis "Python library for simulating X11 keyboard/mouse input")
|
||||||
|
|
Reference in New Issue