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/lxde.scm | |
parent | fc9ca46aa6403c90e2ea5c815d813d2dba162dfb (diff) | |
download | 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/lxde.scm')
-rw-r--r-- | gnu/packages/lxde.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/lxde.scm b/gnu/packages/lxde.scm index 6000ca881a..e3cdd6a1c6 100644 --- a/gnu/packages/lxde.scm +++ b/gnu/packages/lxde.scm @@ -501,7 +501,7 @@ menu spec-compliant desktop menus for LXDE.") "123f3yn4rp1w5b3n5aj3ad9snkxab29qkrs7bcvf5bx4cn57g3sf")))) (build-system gnu-build-system) (inputs - `(("gtk+-2" ,gtk+-2))) + (list gtk+-2)) (native-inputs (list pkg-config intltool)) (synopsis "Tool for mouse and keyboard configuration in LXDE") |