[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: weechat: Sort inputs alphabetically.
From: |
guix-commits |
Subject: |
02/02: gnu: weechat: Sort inputs alphabetically. |
Date: |
Sun, 23 Feb 2020 04:33:59 -0500 (EST) |
efraim pushed a commit to branch master
in repository guix.
commit 6634b29f501764f542e3a5fc91bb691ef18b5702
Author: Efraim Flashner <address@hidden>
AuthorDate: Sun Feb 23 11:30:17 2020 +0200
gnu: weechat: Sort inputs alphabetically.
* gnu/packages/irc.scm (weechat)[inputs]: Sort alphabetically.
---
gnu/packages/irc.scm | 25 +++++++++++++------------
1 file changed, 13 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/irc.scm b/gnu/packages/irc.scm
index fd7eff0..acaf25f 100644
--- a/gnu/packages/irc.scm
+++ b/gnu/packages/irc.scm
@@ -184,19 +184,20 @@ SILC and ICB protocols via plugins.")
("pkg-config" ,pkg-config)
;; For tests.
("cpputest" ,cpputest)))
- (inputs `(("ncurses" ,ncurses)
- ("libgcrypt" ,libgcrypt "out")
- ("zlib" ,zlib)
- ("aspell" ,aspell)
- ("curl" ,curl)
- ("gnutls" ,gnutls)
+ (inputs
+ `(("aspell" ,aspell)
+ ("curl" ,curl)
+ ("gnutls" ,gnutls)
+ ("libgcrypt" ,libgcrypt "out")
+ ("ncurses" ,ncurses)
+ ("zlib" ,zlib)
- ;; Scripting language plug-ins.
- ("guile" ,guile-2.2)
- ("lua" ,lua-5.1)
- ("python" ,python)
- ("perl" ,perl)
- ("tcl" ,tcl)))
+ ;; Scripting language plug-ins.
+ ("guile" ,guile-2.2)
+ ("lua" ,lua-5.1)
+ ("perl" ,perl)
+ ("python" ,python)
+ ("tcl" ,tcl)))
(arguments
`(#:configure-flags
(list "-DENABLE_JAVASCRIPT=OFF"