diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-02-12 11:08:54 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-02-27 16:49:59 +0100 |
commit | 130acf72f78feaf008c148a22680e15725b9112a (patch) | |
tree | dcaa38e25d52020e4c8eeec0f58f4231f3f3f412 /gnu/packages | |
parent | d5d7d26df7c424a9cffee27f1210b59ef8682d5c (diff) | |
download | guix-130acf72f78feaf008c148a22680e15725b9112a.tar.gz guix-130acf72f78feaf008c148a22680e15725b9112a.zip |
gnu: love: Fix build with luajit@2.1.0-beta3.
* gnu/packages/game-development.scm (love)[source]: Add snippet fixing Lua version detection.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/game-development.scm | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index ffc3522919..5deb5a3d91 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -547,7 +547,15 @@ archive on a per-file basis.") "love-" version "-linux-src.tar.gz")) (sha256 (base32 - "11x346pw0gqad8nmkmywzx4xpcbfc3dslbrdw5x94n1i25mk0sxj")))) + "11x346pw0gqad8nmkmywzx4xpcbfc3dslbrdw5x94n1i25mk0sxj")) + (modules '((guix build utils))) + (snippet + '(begin + ;; Build with luajit 2.1.0-beta3. Fixed in love 0.11. + ;; See <https://bitbucket.org/rude/love/issues/1277>. + (substitute* "src/libraries/luasocket/libluasocket/lua.h" + (("> 501") ">= 501")) + #t)))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config))) |