diff options
author | nee <nee.git@cock.li> | 2017-06-10 20:27:58 +0200 |
---|---|---|
committer | Arun Isaac <arunisaac@systemreboot.net> | 2017-06-12 15:02:23 +0530 |
commit | 1243aaac732abc9b02f7dd3788b45e5f8f7b8cf7 (patch) | |
tree | 7e0e4b4af18111753d5387ce5d182a5ae20f2d94 /gnu/packages/games.scm | |
parent | af5faef90f810ca8508f210ec0dab152e812e610 (diff) | |
download | guix-1243aaac732abc9b02f7dd3788b45e5f8f7b8cf7.tar.gz guix-1243aaac732abc9b02f7dd3788b45e5f8f7b8cf7.zip |
gnu: crawl: Fix savegame upgrades.
* gnu/packages/patches/crawl-upgrade-saves.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add patch.
* gnu/packages/games.scm (crawl)[source]: Apply patch.
Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
Diffstat (limited to 'gnu/packages/games.scm')
-rw-r--r-- | gnu/packages/games.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index a76ab1ddc2..9bbf5d0220 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -4049,7 +4049,8 @@ fish. The whole game is accompanied by quiet, comforting music.") version "-nodeps.tar.xz"))) (sha256 (base32 - "0127dgldij2h4m7cf32yy9ndv4vcz03g4km71lmxrsi5mw7ljgpd")))) + "0127dgldij2h4m7cf32yy9ndv4vcz03g4km71lmxrsi5mw7ljgpd")) + (patches (search-patches "crawl-upgrade-saves.patch")))) (build-system gnu-build-system) (inputs `(("lua51" ,lua-5.1) @@ -4101,6 +4102,9 @@ fabulous Orb of Zot.") license:zlib license:asl2.0)))) +;; The linter here claims that patch file names should start with the package +;; name. But, in this case, the patches are inherited from crawl with the +;; "crawl-" prefix instead of "crawl-tiles-". (define-public crawl-tiles (package (inherit crawl) |