diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-02-11 21:05:13 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-02-11 21:56:39 +0100 |
commit | 32be3791a23135cea7a87bcbca37f0d6f840dda1 (patch) | |
tree | f0acc4f627a659a1e1363ca3800292dfce1995b7 /gnu/packages/games.scm | |
parent | 59adc621affeaadf1ff54508091a11f91704056b (diff) |
gnu: crawl: Remove input labels.
* gnu/packages/games.scm (crawl)[native-inputs, inputs]: Remove labels.
Diffstat (limited to 'gnu/packages/games.scm')
-rw-r--r-- | gnu/packages/games.scm | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 06feb897eb..fb67ac9595 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -6401,18 +6401,15 @@ fish. The whole game is accompanied by quiet, comforting music.") (patches (search-patches "crawl-upgrade-saves.patch")))) (build-system gnu-build-system) (inputs - `(("lua51" ,lua-5.1) - ("ncurses" ,ncurses) - ("sqlite" ,sqlite) - ("zlib" ,zlib))) + (list lua-5.1 ncurses sqlite zlib)) (native-inputs - `(("bash" ,bash-minimal) - ("bison" ,bison) - ("flex" ,flex) - ("perl" ,perl) - ("python" ,python-wrapper) - ("python-pyyaml" ,python-pyyaml) - ("pkg-config" ,pkg-config))) + (list bash-minimal + bison + flex + perl + pkg-config + python-wrapper + python-pyyaml)) (arguments `(#:make-flags (let* ((sqlite (assoc-ref %build-inputs "sqlite")) |