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/cook.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/cook.scm')
-rw-r--r-- | gnu/packages/cook.scm | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/gnu/packages/cook.scm b/gnu/packages/cook.scm index ba13709eda..7a064480d4 100644 --- a/gnu/packages/cook.scm +++ b/gnu/packages/cook.scm @@ -70,17 +70,17 @@ (setenv "SH" (which "sh")) #t))))) - (native-inputs `(("bison" ,bison) - ;; For building the documentation: - ("groff" ,groff) - ;; For the tests: - ("sharutils" ,sharutils) - ;; One test wants rsh. However there is no rsh server - ;; running in the build environment and so far as I'm - ;; aware, it cannot be started without root. - ;; This test is therefore just skipped. - ;; ("inetutils" ,inetutils) - ("ed" ,ed))) + (native-inputs (list bison + ;; For building the documentation: + groff + ;; For the tests: + sharutils + ;; One test wants rsh. However there is no rsh server + ;; running in the build environment and so far as I'm + ;; aware, it cannot be started without root. + ;; This test is therefore just skipped. + ;; ("inetutils" ,inetutils) + ed)) (home-page (string-append "https://web.archive.org/web/20140727122520/" "http://miller.emu.id.au/pmiller/software/cook/")) (synopsis "Tool for constructing files") |