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/aspell.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/aspell.scm')
-rw-r--r-- | gnu/packages/aspell.scm | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/gnu/packages/aspell.scm b/gnu/packages/aspell.scm index a86984b28c..753f65642d 100644 --- a/gnu/packages/aspell.scm +++ b/gnu/packages/aspell.scm @@ -73,7 +73,7 @@ (string-append "\"filter-path" middle "\"" libdir "\""))) #t)))))) - (inputs `(("perl" ,perl))) + (inputs (list perl)) (native-search-paths ;; This is a Guix-specific environment variable that takes a single @@ -131,8 +131,7 @@ dictionaries, including personal ones.") (list (string-append "dictdir=" out "/lib/aspell") (string-append "datadir=" out "/lib/aspell"))) #:tests? #f)) - (native-inputs `(("aspell" ,aspell) - ("which" ,which))) + (native-inputs (list aspell which)) (synopsis (string-append full-name " dictionary for GNU Aspell")) ; XXX: i18n (description "This package provides a dictionary for the GNU Aspell spell checker.") @@ -389,10 +388,7 @@ dictionaries, including personal ones.") (base32 "11lkrnhwrf5mvrrq45k4mads3n9aswgac8dc25ba61c75alxb5rs")))) (native-inputs - `(("tar" ,tar) - ("gzip" ,gzip) - ("perl" ,perl) - ("aspell" ,aspell))) + (list tar gzip perl aspell)) (build-system gnu-build-system) (arguments `(#:phases @@ -522,10 +518,9 @@ under permissive licensing terms. See the 'Copyright' file.")))) (format port "#define MAN45DIR \"~a/share/man/man5\"~%" out)))) #t))))) (inputs - `(("grep" ,grep) - ("ncurses" ,ncurses))) + (list grep ncurses)) (native-inputs - `(("bison" ,bison))) + (list bison)) (synopsis "Interactive spell-checking tool for Unix") (description "Ispell is an interactive spell-checking tool supporting many European languages.") |