me
/
guix
Archived
1
0
Fork 0

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.
Efraim Flashner 2022-01-19 16:01:59 +02:00
parent b8aa431382
commit 2c9787086a
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 1 additions and 2 deletions

View File

@ -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")