forked from guix-mirror/guix
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gnu: nethack: Fix missing command line arguments support in wrapper.
* gnu/packages/games.scm (nethack)[phases]: Pass "$@" to nethack. Signed-off-by: 宋文武 <[email protected]>
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,7 +63,7 @@ | |
;;; Copyright © 2021 David Pflug <[email protected]> | ||
;;; Copyright © 2021, 2022 Felix Gruber <[email protected]> | ||
;;; Copyright © 2021 Solene Rapenne <[email protected]> | ||
;;; Copyright © 2021 Noisytoot <noisytoot@disroot.org> | ||
;;; Copyright © 2021, 2022 Noisytoot <ron@noisytoot.org> | ||
;;; Copyright © 2021 Petr Hodina <[email protected]> | ||
;;; Copyright © 2021, 2022 Brendan Tildesley <[email protected]> | ||
;;; Copyright © 2021 Christopher Baines <[email protected]> | ||
|
@@ -2086,7 +2086,7 @@ done | |
for i in ~a/games/lib/nethackdir/*; do | ||
ln -s $i $(basename $i) | ||
done | ||
~a/games/nethack" | ||
~a/games/nethack \"$@\"" | ||
(assoc-ref %build-inputs "bash") | ||
(list->search-path-as-string | ||
(list | ||
|