diff options
| author | Herman Rimm <herman@rimm.ee> | 2026-03-21 10:54:11 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2026-04-01 22:06:13 +0200 |
| commit | 50a02cc74f21ad401ec7cef4fa073440f6c41399 (patch) | |
| tree | ed037beaafbfa3fb801c088a67920b5950dad317 /gnu/packages/vim.scm | |
| parent | 4e6cf49809339f02f9d5268c3224e2d6e4e88a9c (diff) | |
gnu: vim-full: Refactor inputs.
* gnu/packages/vim.scm (vim-full)[inputs]: Change to new style. Use
modify-inputs. Use inherited field value.
Change-Id: Idfec512798a9d3096c83b05f13aaef3660d317fd
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/vim.scm')
| -rw-r--r-- | gnu/packages/vim.scm | 53 |
1 files changed, 27 insertions, 26 deletions
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm index 36613926a47..d975b707f30 100644 --- a/gnu/packages/vim.scm +++ b/gnu/packages/vim.scm @@ -16,6 +16,7 @@ ;;; Copyright © 2023 Charles Jackson <charles.b.jackson@protonmail.com> ;;; Copyright © 2023 Foundation Devices, Inc. <hello@foundationdevices.com> ;;; Copyright © 2023, 2024 Nguyễn Gia Phong <cnx@loang.net> +;;; Copyright © 2026 Herman Rimm <herman@rimm.ee> ;;; ;;; This file is part of GNU Guix. ;;; @@ -264,32 +265,32 @@ with the editor vim."))) (modify-inputs native-inputs (prepend pkg-config xorg-server-for-tests))) (inputs - `(("acl" ,acl) - ("at-spi2-core" ,at-spi2-core) - ("attr" ,attr) - ("cairo" ,cairo) - ("fontconfig" ,fontconfig) - ("freetype" ,freetype) - ("gdk-pixbuf" ,gdk-pixbuf) - ("gettext" ,gettext-minimal) - ("glib" ,glib) - ("gpm" ,gpm) - ("gtk" ,gtk+-2) - ("harfbuzz" ,harfbuzz) - ("libice" ,libice) - ("libpng" ,libpng) - ("libsm" ,libsm) - ("libx11" ,libx11) - ("libxdmcp" ,libxdmcp) - ("libxt" ,libxt) - ("libxpm" ,libxpm) - ("lua" ,lua) - ("pango" ,pango) - ("pixman" ,pixman) - ("python-3" ,python) - ("ruby" ,ruby) - ("tcl" ,tcl) - ,@(package-inputs vim))) + (modify-inputs inputs + (append acl + at-spi2-core + attr + cairo + fontconfig + freetype + gdk-pixbuf + gettext-minimal + glib + gpm + gtk+-2 + harfbuzz + libice + libpng + libsm + libx11 + libxdmcp + libxt + libxpm + lua + pango + pixman + python + ruby + tcl))) ;; The description shares language with the vim package. When making ;; changes, check if the other description also needs to be updated. (description "Vim is a highly configurable text editor built to enable efficient text |
