mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 13:36:36 +01:00
gnu: libxcursor: Set a better default XCURSORPATH.
* gnu/packages/xorg.scm (libxcursor)[arguments]: Add "--with-cursorpath" to configure-flags. Change-Id: I821cd440cf4e9e6fcc67c9164a38b81e8d793dff
This commit is contained in:
parent
8ce68fba44
commit
841b26811d
1 changed files with 11 additions and 1 deletions
|
@ -5423,7 +5423,17 @@ (define-public libxcursor
|
||||||
"1h62narayrhrkqalrmx7z3s6yppw1acbp5id3skrvrygshnl1sgx"))))
|
"1h62narayrhrkqalrmx7z3s6yppw1acbp5id3skrvrygshnl1sgx"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:configure-flags '("--disable-static")))
|
(list
|
||||||
|
#:configure-flags
|
||||||
|
#~(list "--disable-static"
|
||||||
|
;; Set default path, used when XCURSOR_PATH is unset.
|
||||||
|
(string-append "--with-cursorpath="
|
||||||
|
(string-join
|
||||||
|
'("~/.local/share/icons" "~/.icons"
|
||||||
|
"~/.guix-profile/share/icons"
|
||||||
|
"/run/current-system/profile/share/icons"
|
||||||
|
"/usr/share/icons")
|
||||||
|
":")))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list libx11 libxrender libxfixes xorgproto))
|
(list libx11 libxrender libxfixes xorgproto))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
|
Loading…
Reference in a new issue