gnu: guile-xcb: Fix up indentation.

* gnu/packages/guile-wm.scm (guile-xcb): Fix up indentation.

Signed-off-by: Kei Kebreau <kkebreau@posteo.net>
master
ng0 2017-12-04 22:14:58 +00:00 committed by Kei Kebreau
parent 3fb8041c0d
commit 17acac5135
No known key found for this signature in database
GPG Key ID: E6A5EE3C19467A0D
1 changed files with 32 additions and 33 deletions

View File

@ -34,41 +34,40 @@
(define-public guile-xcb (define-public guile-xcb
(let ((commit "db7d5a393cc37a56f66541b3f33938b40c6f35b3") (let ((commit "db7d5a393cc37a56f66541b3f33938b40c6f35b3")
(revision "1")) (revision "1"))
(package (package
(name "guile-xcb") (name "guile-xcb")
(version (git-version "1.3" revision commit)) (version (git-version "1.3" revision commit))
(source (origin (source (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/mwitmer/guile-xcb") (url "https://github.com/mwitmer/guile-xcb")
(commit commit))) (commit commit)))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"16w4vgzbmnwih4bgfn8rw85ryfvzhc6hyly6bic9sd7hhc82rcnd")))) "16w4vgzbmnwih4bgfn8rw85ryfvzhc6hyly6bic9sd7hhc82rcnd"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments '(;; Parallel builds fail. (arguments '(;; Parallel builds fail.
#:parallel-build? #f #:parallel-build? #f
#:configure-flags (list (string-append
#:configure-flags (list (string-append "--with-guile-site-dir="
"--with-guile-site-dir=" (assoc-ref %outputs "out")
(assoc-ref %outputs "out") "/share/guile/site/2.2")
"/share/guile/site/2.2") (string-append
(string-append "--with-guile-site-ccache-dir="
"--with-guile-site-ccache-dir=" (assoc-ref %outputs "out")
(assoc-ref %outputs "out") "/share/guile/site/2.2"))))
"/share/guile/site/2.2")))) (native-inputs `(("pkg-config" ,pkg-config)
(native-inputs `(("pkg-config" ,pkg-config) ("texinfo" ,texinfo)))
("texinfo" ,texinfo))) (inputs `(("guile" ,guile-2.2)
(inputs `(("guile" ,guile-2.2) ("xcb" ,xcb-proto)))
("xcb" ,xcb-proto))) (home-page "https://github.com/mwitmer/guile-xcb")
(home-page "https://github.com/mwitmer/guile-xcb") (synopsis "XCB bindings for Guile")
(synopsis "XCB bindings for Guile") (description
(description "Guile-XCB implements the XCB protocol and provides all the tools
"Guile-XCB implements the XCB protocol and provides all the tools
necessary to write X client code in Guile Scheme without any external necessary to write X client code in Guile Scheme without any external
dependencies.") dependencies.")
(license gpl3+)))) (license gpl3+))))
(define-public guile-wm (define-public guile-wm
(let ((commit "f3c7b3be719f425ffb87265d34855a73366351be") (let ((commit "f3c7b3be719f425ffb87265d34855a73366351be")