gnu: fennel: Update to 1.5.1.

* gnu/packages/lua.scm (fennel): Update to 1.5.1.

Change-Id: I6775e34e470a957a741a2b079d5e8040c98921d2
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Yovan Naumovski 2024-12-30 23:11:46 +02:00 committed by Ludovic Courtès
parent cc58b52e15
commit af6224359f
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -1396,7 +1396,7 @@ (define-public emilua
(define-public fennel
(package
(name "fennel")
(version "1.5.0")
(version "1.5.1")
(source (origin
(method git-fetch)
(uri (git-reference
@ -1405,7 +1405,7 @@ (define-public fennel
(file-name (git-file-name name version))
(sha256
(base32
"0d25v7swq3msxsdzv91wwxy89y3qgw4bvzq1px89qsjzbbd7ccg2"))))
"09m7v62qw058llfrfqja14yx8ngjzrfx10hf2h1cc5zz0nbw89bj"))))
(build-system gnu-build-system)
(arguments
(list #:make-flags #~(list (string-append "PREFIX="
@ -1416,6 +1416,11 @@ (define-public fennel
(delete 'configure)
(add-after 'build 'patch-fennel
(lambda* (#:key inputs #:allow-other-keys)
;; Remove IRC CI build status reporting
(delete-file "test/irc.lua")
(substitute* "test/init.lua"
((",\\{hooks=\\{exit=dofile\\(\"test/irc.lua\"\\)\\}\\}")
""))
(substitute* "fennel"
(("/usr/bin/env .*lua")
(search-input-file inputs "/bin/lua")))))