me
/
guix
Archived
1
0
Fork 0

gnu: weechat: Sort inputs alphabetically.

* gnu/packages/irc.scm (weechat)[inputs]: Sort alphabetically.
master
Efraim Flashner 2020-02-23 11:30:17 +02:00
parent bee2c1a918
commit 6634b29f50
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 13 additions and 12 deletions

View File

@ -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"