diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-14 23:56:41 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-15 00:10:13 -0400 |
commit | 52518b647852fff734cfaed8b1e7742bedf15132 (patch) | |
tree | efcb38a271f0f279a30fdce8e93db4536cafaf69 /gnu/packages/xdisorg.scm | |
parent | 5841ac3981a3a08968704728cef14accd14e7a1c (diff) | |
download | guix-52518b647852fff734cfaed8b1e7742bedf15132.tar.gz |
gnu: libxkbcommon: Fix indentation.
* gnu/packages/xdisorg.scm (libxkbcommon): Fix indentation.
Diffstat (limited to 'gnu/packages/xdisorg.scm')
-rw-r--r-- | gnu/packages/xdisorg.scm | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 5b9c50d8bd..f4ddd15aaa 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -504,12 +504,12 @@ avoiding password prompts when X11 forwarding has already been setup.") (name "libxkbcommon") (version "1.4.1") (source (origin - (method url-fetch) - (uri (string-append "https://xkbcommon.org/download/libxkbcommon-" - version ".tar.xz")) - (sha256 - (base32 - "0fbb2dyjvf71p42y2jmwdcylsvj03w52f5rb23c2d00rwahhfg4l")))) + (method url-fetch) + (uri (string-append "https://xkbcommon.org/download/libxkbcommon-" + version ".tar.xz")) + (sha256 + (base32 + "0fbb2dyjvf71p42y2jmwdcylsvj03w52f5rb23c2d00rwahhfg4l")))) (build-system meson-build-system) (inputs (list libx11 @@ -525,11 +525,11 @@ avoiding password prompts when X11 forwarding has already been setup.") (arguments (list #:configure-flags #~(list (string-append "-Dxkb-config-root=" - (search-input-directory %build-inputs - "share/X11/xkb")) + (search-input-directory + %build-inputs "share/X11/xkb")) (string-append "-Dx-locale-root=" - (search-input-directory %build-inputs - "share/X11/locale"))))) + (search-input-directory + %build-inputs "share/X11/locale"))))) (home-page "https://xkbcommon.org/") (synopsis "Library to handle keyboard descriptions") (description "Xkbcommon is a library to handle keyboard descriptions, |