diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-12-13 22:15:07 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-12-13 22:15:07 +0100 |
commit | e3196755e60ba7f1ed9d432e73f26a85e0c8893c (patch) | |
tree | 06bc27447f2f72b20a2be0201b41b964af03fc87 /gnu/packages/cinnamon.scm | |
parent | fc9ca46aa6403c90e2ea5c815d813d2dba162dfb (diff) | |
download | guix-e3196755e60ba7f1ed9d432e73f26a85e0c8893c.tar guix-e3196755e60ba7f1ed9d432e73f26a85e0c8893c.tar.gz |
gnu: Further simplify package inputs.
This is the result of running:
./pre-inst-env guix style --input-simplification=safe
and manually undoing changes on a dozen of packages to reduce
rebuilds (derivations for emacs, icecat, and libreoffice are unchanged.)
Diffstat (limited to 'gnu/packages/cinnamon.scm')
-rw-r--r-- | gnu/packages/cinnamon.scm | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/gnu/packages/cinnamon.scm b/gnu/packages/cinnamon.scm index e1c9d7b614..fe33e797e4 100644 --- a/gnu/packages/cinnamon.scm +++ b/gnu/packages/cinnamon.scm @@ -53,24 +53,24 @@ (build-system gnu-build-system) ;; TODO: package 'libgsystem'. (inputs - `(("accountsservice" ,accountsservice) - ("gtk+" ,gtk+) - ("glib" ,glib) - ("gobject-introspection" ,gobject-introspection) - ("gnome-common" ,gnome-common) - ("libxkbfile" ,libxkbfile) - ("libxrandr" ,libxrandr) - ("python-2" ,python-2) - ("pulseaudio" ,pulseaudio) - ("xkeyboard-config" ,xkeyboard-config))) + (list accountsservice + gtk+ + glib + gobject-introspection + gnome-common + libxkbfile + libxrandr + python-2 + pulseaudio + xkeyboard-config)) (native-inputs - `(("autoconf" ,autoconf) - ("automake" ,automake) - ("gettext" ,gettext-minimal) - ("glib" ,glib "bin") ; glib-gettextize - ("intltool" ,intltool) - ("libtool" ,libtool) - ("pkg-config" ,pkg-config))) + (list autoconf + automake + gettext-minimal + `(,glib "bin") ; glib-gettextize + intltool + libtool + pkg-config)) (home-page "https://github.com/linuxmint/cinnamon-desktop/") (synopsis "Library for the Cinnamon Desktop") (description |