summaryrefslogtreecommitdiff
path: root/gnu/packages/lua.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/lua.scm')
-rw-r--r--gnu/packages/lua.scm11
1 files changed, 7 insertions, 4 deletions
diff --git a/gnu/packages/lua.scm b/gnu/packages/lua.scm
index 950090afcbb..e28dde62d7b 100644
--- a/gnu/packages/lua.scm
+++ b/gnu/packages/lua.scm
@@ -3,7 +3,7 @@
3;;; Copyright © 2014 Raimon Grau <raimonster@gmail.com> 3;;; Copyright © 2014 Raimon Grau <raimonster@gmail.com>
4;;; Copyright © 2014 Mark H Weaver <mhw@netris.org> 4;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
5;;; Copyright © 2014 Andreas Enge <andreas@enge.fr> 5;;; Copyright © 2014 Andreas Enge <andreas@enge.fr>
6;;; Copyright © 2016, 2017, 2020 Efraim Flashner <efraim@flashner.co.il> 6;;; Copyright © 2016, 2017, 2020, 2021 Efraim Flashner <efraim@flashner.co.il>
7;;; Copyright © 2016, 2019 Ricardo Wurmus <rekado@elephly.net> 7;;; Copyright © 2016, 2019 Ricardo Wurmus <rekado@elephly.net>
8;;; Copyright © 2016 doncatnip <gnopap@gmail.com> 8;;; Copyright © 2016 doncatnip <gnopap@gmail.com>
9;;; Copyright © 2016, 2017, 2019 Clément Lassieur <clement@lassieur.org> 9;;; Copyright © 2016, 2017, 2019 Clément Lassieur <clement@lassieur.org>
@@ -1066,7 +1066,7 @@ shell command executions.")
1066(define-public fennel 1066(define-public fennel
1067 (package 1067 (package
1068 (name "fennel") 1068 (name "fennel")
1069 (version "0.7.0") 1069 (version "0.8.0")
1070 (source (origin 1070 (source (origin
1071 (method git-fetch) 1071 (method git-fetch)
1072 (uri (git-reference 1072 (uri (git-reference
@@ -1075,7 +1075,7 @@ shell command executions.")
1075 (file-name (git-file-name name version)) 1075 (file-name (git-file-name name version))
1076 (sha256 1076 (sha256
1077 (base32 1077 (base32
1078 "17pdcwhfw754fblppw46qphnsvxrn3b7066cz54lv8c0c12iryim")) 1078 "1jng33vmnk6mi37l3x2z0plng940jpj7kz1s493ki80z3mkaxjfg"))
1079 (modules '((guix build utils))) 1079 (modules '((guix build utils)))
1080 (snippet 1080 (snippet
1081 '(begin 1081 '(begin
@@ -1091,7 +1091,10 @@ shell command executions.")
1091 (lambda _ 1091 (lambda _
1092 (substitute* "fennel" 1092 (substitute* "fennel"
1093 (("/usr/bin/env lua") (which "lua"))) 1093 (("/usr/bin/env lua") (which "lua")))
1094 #t))))) 1094 #t))
1095 (delete 'check)
1096 (add-after 'install 'check
1097 (assoc-ref %standard-phases 'check)))))
1095 (inputs `(("lua" ,lua))) 1098 (inputs `(("lua" ,lua)))
1096 (home-page "https://fennel-lang.org/") 1099 (home-page "https://fennel-lang.org/")
1097 (synopsis "A Lisp that compiles to Lua") 1100 (synopsis "A Lisp that compiles to Lua")