gnu: chatty: Fix indentation.

* gnu/packages/messaging.scm (chatty): Re-indent.
This commit is contained in:
Maxim Cournoyer 2022-09-12 00:13:46 -04:00
parent 8465732b7c
commit e1ae27e712
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -2805,10 +2805,10 @@ (define-public libphonenumber
(license license:asl2.0))) (license license:asl2.0)))
(define-public chatty (define-public chatty
(package (package
(name "chatty") (name "chatty")
(version "0.6.7") (version "0.6.7")
(source (origin (source (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://source.puri.sm/Librem5/chatty.git") (url "https://source.puri.sm/Librem5/chatty.git")
@ -2823,51 +2823,51 @@ (define-public chatty
(sha256 (sha256
(base32 (base32
"11q07vjrrjf3k00kk41vm79brpq0qigz7l328br3g0li979kz32v")))) "11q07vjrrjf3k00kk41vm79brpq0qigz7l328br3g0li979kz32v"))))
(build-system meson-build-system) (build-system meson-build-system)
(arguments (arguments
'(#:phases '(#:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(add-after 'unpack 'skip-updating-desktop-database (add-after 'unpack 'skip-updating-desktop-database
(lambda _ (lambda _
(substitute* "meson.build" (substitute* "meson.build"
(("meson.add_install_script.*") "")))) (("meson.add_install_script.*") ""))))
(add-before 'check 'pre-check (add-before 'check 'pre-check
(lambda* (#:key tests? #:allow-other-keys) (lambda* (#:key tests? #:allow-other-keys)
(when tests? (when tests?
;; One test requires a running Xorg server. Start one. ;; One test requires a running Xorg server. Start one.
(system "Xvfb :1 &") (system "Xvfb :1 &")
(setenv "DISPLAY" ":1") (setenv "DISPLAY" ":1")
;; HOME must be writable for writing configuration files. ;; HOME must be writable for writing configuration files.
(setenv "HOME" "/tmp"))))))) (setenv "HOME" "/tmp")))))))
(native-inputs (native-inputs
(list gettext-minimal (list gettext-minimal
`(,glib "bin") `(,glib "bin")
pkg-config pkg-config
protobuf protobuf
xorg-server-for-tests)) xorg-server-for-tests))
(inputs (inputs
(list feedbackd (list feedbackd
folks folks
gnome-desktop gnome-desktop
gsettings-desktop-schemas gsettings-desktop-schemas
gspell gspell
json-glib json-glib
libgcrypt libgcrypt
libgee libgee
libhandy libhandy
libolm libolm
libphonenumber libphonenumber
modem-manager modem-manager
pidgin pidgin
purple-mm-sms purple-mm-sms
sqlite)) sqlite))
(propagated-inputs (propagated-inputs
(list adwaita-icon-theme evolution-data-server)) (list adwaita-icon-theme evolution-data-server))
(synopsis "Mobile client for XMPP and SMS messaging") (synopsis "Mobile client for XMPP and SMS messaging")
(description "Chatty is a chat program for XMPP and SMS. It works on mobile (description "Chatty is a chat program for XMPP and SMS. It works on mobile
as well as on desktop platforms. It's based on libpurple and ModemManager.") as well as on desktop platforms. It's based on libpurple and ModemManager.")
(home-page "https://source.puri.sm/Librem5/chatty") (home-page "https://source.puri.sm/Librem5/chatty")
(license license:gpl3+))) (license license:gpl3+)))
(define-public mosquitto (define-public mosquitto
(package (package