diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2019-03-08 15:25:57 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2019-03-08 17:22:26 +0200 |
commit | fc7d6bc60d0ee85017217b528cb2f46342141c11 (patch) | |
tree | 2bb970fe93ec9ef6785904665271a6954fd4250b /gnu/packages/games.scm | |
parent | 4035fcba93aaf551f4b5698045f025aa61287e17 (diff) | |
download | guix-fc7d6bc60d0ee85017217b528cb2f46342141c11.tar.gz guix-fc7d6bc60d0ee85017217b528cb2f46342141c11.zip |
gnu: crawl: Build with python3-wrapper.
* gnu/packages/games.scm (crawl)[native-inputs replace python with
python-wrapper.
[arguments]: Remove custom 'patch-python phase.
Diffstat (limited to 'gnu/packages/games.scm')
-rw-r--r-- | gnu/packages/games.scm | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 3752c6e022..1742454729 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -4437,7 +4437,7 @@ fish. The whole game is accompanied by quiet, comforting music.") `(("bison" ,bison) ("flex" ,flex) ("perl" ,perl) - ("python" ,python) + ("python" ,python-wrapper) ("python-pyyaml" ,python-pyyaml) ("pkg-config" ,pkg-config))) (arguments @@ -4454,11 +4454,6 @@ fish. The whole game is accompanied by quiet, comforting music.") "-Csource")) #:phases (modify-phases %standard-phases - (add-after 'unpack 'patch-python - (lambda* (#:key inputs #:allow-other-keys) - (substitute* "source/util/species-gen.py" - (("python") "python3")) - #t)) (delete 'configure) (replace 'check (lambda* (#:key inputs outputs make-flags #:allow-other-keys) |