From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:36560) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iNdsN-0002mW-Iy for guix-patches@gnu.org; Thu, 24 Oct 2019 10:14:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iNdsM-000362-20 for guix-patches@gnu.org; Thu, 24 Oct 2019 10:14:07 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:56131) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iNdsJ-00035J-E9 for guix-patches@gnu.org; Thu, 24 Oct 2019 10:14:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iNdsJ-0006eh-7B for guix-patches@gnu.org; Thu, 24 Oct 2019 10:14:03 -0400 Subject: [bug#37903] [PATCH 2/2] gnu: profanity: Correct indentation. References: <20191024141000.l7qqh3ka4tlllxfj@rafflesia> In-Reply-To: <20191024141000.l7qqh3ka4tlllxfj@rafflesia> Resent-Message-ID: Date: Thu, 24 Oct 2019 16:13:03 +0200 From: Tanguy Le Carrour Message-ID: <20191024141303.wc6sfpe5m4fi6ndx@rafflesia> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="hn6dyrh635qunzvg" Content-Disposition: inline List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 37903@debbugs.gnu.org --hn6dyrh635qunzvg Content-Type: text/plain; charset=us-ascii Content-Disposition: inline --hn6dyrh635qunzvg Content-Type: text/plain; charset=us-ascii Content-Disposition: inline >From 4cde7142307210ececf842bb5a3d643cef8811f5 Mon Sep 17 00:00:00 2001 From: Tanguy Le Carrour Date: Thu, 24 Oct 2019 15:53:14 +0200 Subject: [PATCH 2/2] gnu: profanity: Correct indentation. * gnu/packages/messaging.scm (profanity): Correct indentation. --- gnu/packages/messaging.scm | 64 +++++++++++++++++++------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index ca51024d2b..f890ad8dd5 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -1616,39 +1616,39 @@ are both supported).") (license (list license:gpl3+ license:x11)))) (define-public profanity - (package - (name "profanity") - (version "0.7.1") - (source (origin - (method url-fetch) - (uri (string-append "https://profanity-im.github.io/profanity-" - version ".tar.gz")) - (sha256 - (base32 - "0nxh81j8ky0fzv47pip1jb7rs5rrin3jx0f3h632bvpjiya45r1z")))) - (build-system gnu-build-system) - (inputs - `(("curl" ,curl) - ("expat" ,expat) - ("glib" ,glib) - ("gpgme" ,gpgme) - ("libmesode" ,libmesode) - ("libotr" ,libotr) - ("ncurses" ,ncurses) - ("openssl" ,openssl) - ("readline" ,readline))) - (native-inputs - `(("autoconf" ,autoconf) - ("autoconf-archive" ,autoconf-archive) - ("automake" ,automake) - ("cmocka" ,cmocka) - ("libtool" ,libtool) - ("pkg-config" ,pkg-config))) - (synopsis "Console-based XMPP client") - (description "Profanity is a console based XMPP client written in C + (package + (name "profanity") + (version "0.7.1") + (source (origin + (method url-fetch) + (uri (string-append "https://profanity-im.github.io/profanity-" + version ".tar.gz")) + (sha256 + (base32 + "0nxh81j8ky0fzv47pip1jb7rs5rrin3jx0f3h632bvpjiya45r1z")))) + (build-system gnu-build-system) + (inputs + `(("curl" ,curl) + ("expat" ,expat) + ("glib" ,glib) + ("gpgme" ,gpgme) + ("libmesode" ,libmesode) + ("libotr" ,libotr) + ("ncurses" ,ncurses) + ("openssl" ,openssl) + ("readline" ,readline))) + (native-inputs + `(("autoconf" ,autoconf) + ("autoconf-archive" ,autoconf-archive) + ("automake" ,automake) + ("cmocka" ,cmocka) + ("libtool" ,libtool) + ("pkg-config" ,pkg-config))) + (synopsis "Console-based XMPP client") + (description "Profanity is a console based XMPP client written in C using ncurses and libmesode, inspired by Irssi.") - (home-page "http://www.profanity.im") - (license license:gpl3+))) + (home-page "http://www.profanity.im") + (license license:gpl3+))) (define-public libircclient (package -- 2.23.0 --hn6dyrh635qunzvg--