diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-12-13 17:18:24 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-12-13 17:48:25 +0100 |
commit | 8394619baceb118df92e355377fd543bb1aa501a (patch) | |
tree | 504f07c2a9f88596a305b59ef45f941062426a52 /gnu/packages/telegram.scm | |
parent | aca2defe0172868295941fd9f0e97886f6e9b2d4 (diff) |
gnu: Simplify package inputs.
This commit was obtained by running:
./pre-inst-env guix style
without any additional argument.
Diffstat (limited to 'gnu/packages/telegram.scm')
-rw-r--r-- | gnu/packages/telegram.scm | 46 |
1 files changed, 17 insertions, 29 deletions
diff --git a/gnu/packages/telegram.scm b/gnu/packages/telegram.scm index a1822b3892..9c9c5a01a5 100644 --- a/gnu/packages/telegram.scm +++ b/gnu/packages/telegram.scm @@ -260,10 +260,7 @@ Telegram project, for its use in telegram desktop client.") "libcrypto opus alsa libpulse")) #t))))) (native-inputs - `(("autoconf" ,autoconf) - ("automake" ,automake) - ("libtool" ,libtool) - ("pkg-config" ,pkg-config))))))) + (list autoconf automake libtool pkg-config)))))) (define-public telegram-desktop (package @@ -562,7 +559,7 @@ Telegram project, for its use in telegram desktop client.") ("xxhash" ,xxhash) ("zlib" ,zlib))) (propagated-inputs - `(("dconf" ,dconf))) + (list dconf)) (synopsis "Telegram Desktop") (description "Telegram desktop is the official desktop version of the Telegram instant messenger.") @@ -682,15 +679,9 @@ formerly a part of telegram-cli, but now being maintained separately.") ("libs" "lib/tgl")) args)))))) (native-inputs - `(("autoconf" ,autoconf) - ("automake" ,automake) - ("libtool" ,libtool) - ("pkg-config" ,pkg-config))) + (list autoconf automake libtool pkg-config)) (inputs - `(("libevent" ,libevent) - ("libgcrypt" ,libgcrypt) - ("tl-parser" ,tl-parser) - ("zlib" ,zlib))) + (list libevent libgcrypt tl-parser zlib)) (synopsis "Telegram Library") (description "TGL is the telegram library for telegram-cli.") (home-page "https://github.com/vysheng/tgl") @@ -766,23 +757,20 @@ formerly a part of telegram-cli, but now being maintained separately.") #:exclude ("tg-server.pub"))) args)))))) (native-inputs - `(("autoconf" ,autoconf) - ("automake" ,automake) - ("libtool" ,libtool) - ("pkg-config" ,pkg-config))) + (list autoconf automake libtool pkg-config)) (inputs - `(("jansson" ,jansson) - ("libconfig" ,libconfig) - ("libevent" ,libevent) - ("libgcrypt" ,libgcrypt) - ("lua" ,lua) - ("openssl" ,openssl) - ("perl" ,perl) - ("python" ,python) - ("readline" ,readline) - ("tgl" ,tgl) - ("tl-parser" ,tl-parser) - ("zlib" ,zlib))) + (list jansson + libconfig + libevent + libgcrypt + lua + openssl + perl + python + readline + tgl + tl-parser + zlib)) (synopsis "Telegram Messenger CLI") (description "TG is the command-line interface for Telegram Messenger.") (home-page "https://github.com/vysheng/tg") |