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/presentation.scm | |
parent | aca2defe0172868295941fd9f0e97886f6e9b2d4 (diff) | |
download | guix-8394619baceb118df92e355377fd543bb1aa501a.tar guix-8394619baceb118df92e355377fd543bb1aa501a.tar.gz |
gnu: Simplify package inputs.
This commit was obtained by running:
./pre-inst-env guix style
without any additional argument.
Diffstat (limited to 'gnu/packages/presentation.scm')
-rw-r--r-- | gnu/packages/presentation.scm | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/gnu/packages/presentation.scm b/gnu/packages/presentation.scm index 8d24a81f9d..1601ba7f2a 100644 --- a/gnu/packages/presentation.scm +++ b/gnu/packages/presentation.scm @@ -71,16 +71,15 @@ '("presentty" "presentty-console"))) #t))))) (inputs - `(("cowsay" ,cowsay) - ("figlet" ,figlet) - ("jp2a" ,jp2a) - ("python-docutils" ,python-docutils) - ("python-pillow" ,python-pillow-2.9) - ("python-six" ,python-six) - ("python-urwid" ,python-urwid))) + (list cowsay + figlet + jp2a + python-docutils + python-pillow-2.9 + python-six + python-urwid)) (native-inputs - `(("python-pbr" ,python-pbr) - ("python-pygments" ,python-pygments))) + (list python-pbr python-pygments)) (home-page "http://git.inaugust.com/cgit/presentty/") (synopsis "Console-based presentation system") (description "Presentty is a console-based presentation program where slides |