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/conky.scm | |
parent | aca2defe0172868295941fd9f0e97886f6e9b2d4 (diff) | |
download | 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/conky.scm')
-rw-r--r-- | gnu/packages/conky.scm | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/gnu/packages/conky.scm b/gnu/packages/conky.scm index ad4d396289..9843cbe3c0 100644 --- a/gnu/packages/conky.scm +++ b/gnu/packages/conky.scm @@ -74,20 +74,20 @@ (install-file "src/conky" bin)) #t))))) (inputs - `(("freetype" ,freetype) - ("imlib2" ,imlib2) - ("libx11" ,libx11) - ("libxdamage" ,libxdamage) - ("libxext" ,libxext) - ("libxft" ,libxft) - ("libxinerama" ,libxinerama) - ("pulseaudio" ,pulseaudio) - ("lua" ,lua) - ("ncurses" ,ncurses) - ("curl" ,curl) - ("wireless-tools" ,wireless-tools))) + (list freetype + imlib2 + libx11 + libxdamage + libxext + libxft + libxinerama + pulseaudio + lua + ncurses + curl + wireless-tools)) (native-inputs - `(("pkg-config" ,pkg-config))) + (list pkg-config)) (synopsis "Lightweight system monitor for X") (description "Conky is a lightweight system monitor for X that displays operating |