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/mc.scm | |
parent | aca2defe0172868295941fd9f0e97886f6e9b2d4 (diff) | |
download | guix-8394619baceb118df92e355377fd543bb1aa501a.tar 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/mc.scm')
-rw-r--r-- | gnu/packages/mc.scm | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/gnu/packages/mc.scm b/gnu/packages/mc.scm index e07191e344..7bde8a5e78 100644 --- a/gnu/packages/mc.scm +++ b/gnu/packages/mc.scm @@ -47,15 +47,14 @@ (sha256 (base32 "1x2g5ahgzg951y4ldbsgkv8icni2mgh3p2wsds0j16gsbwi5kgii")))) (build-system gnu-build-system) - (native-inputs `(("perl" ,perl) - ("pkg-config" ,pkg-config))) - (inputs `(("aspell" ,aspell) - ("check" ,check) - ("glib" ,glib) - ("gpm" ,gpm) - ("libssh2" ,libssh2) - ("ncurses" ,ncurses) - ("unzip" ,unzip))) + (native-inputs (list perl pkg-config)) + (inputs (list aspell + check + glib + gpm + libssh2 + ncurses + unzip)) (arguments `(#:configure-flags '("--with-screen=ncurses" "--enable-aspell") |