gnu: wl-clipboard: Don't require helper tools in $PATH.
* gnu/packages/xdisorg.scm (wl-clipboard)[arguments]: Add a new 'patch-file-names phase. [inputs]: Add coreutils and xdg-utils. Reported by pineapples in #guix.master
parent
992aa56e7c
commit
df48a11e1b
|
@ -2235,11 +2235,25 @@ binary to setuid-binaries:
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0c4w87ipsw09aii34szj9p0xfy0m00wyjpll0gb0aqmwa60p0c5d"))))
|
(base32 "0c4w87ipsw09aii34szj9p0xfy0m00wyjpll0gb0aqmwa60p0c5d"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'patch-file-names
|
||||||
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
(substitute* (find-files "src" "\\.c$")
|
||||||
|
(("\"(cat|rm)\"" _ command)
|
||||||
|
(string-append "\"" (assoc-ref inputs "coreutils")
|
||||||
|
"/bin/" command "\""))
|
||||||
|
(("\"xdg-mime\"")
|
||||||
|
(string-append "\"" (assoc-ref inputs "xdg-utils")
|
||||||
|
"/bin/xdg-mime\""))))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("pkg-config" ,pkg-config)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("wayland" ,wayland)
|
`(("coreutils" ,coreutils)
|
||||||
("wayland-protocols" ,wayland-protocols)))
|
("wayland" ,wayland)
|
||||||
|
("wayland-protocols" ,wayland-protocols)
|
||||||
|
("xdg-utils" ,xdg-utils)))
|
||||||
(home-page "https://github.com/bugaevc/wl-clipboard")
|
(home-page "https://github.com/bugaevc/wl-clipboard")
|
||||||
(synopsis "Command-line copy/paste utilities for Wayland")
|
(synopsis "Command-line copy/paste utilities for Wayland")
|
||||||
(description "Wl-clipboard is a set of command-line copy/paste utilities for
|
(description "Wl-clipboard is a set of command-line copy/paste utilities for
|
||||||
|
|
Reference in New Issue