gnu: fennel: Update to 03c1c95.
* gnu/packages/lua.scm (fennel): Update to 03c1c95. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
532153d49c
commit
73d775f518
1 changed files with 38 additions and 32 deletions
|
@ -1178,18 +1178,24 @@ enabled.")
|
|||
(license license:boost1.0)))
|
||||
|
||||
(define-public fennel
|
||||
;; The 1.0.0 release had a bug where fennel installed under 5.4 no matter
|
||||
;; what lua was used to compile it. There has since been an update that
|
||||
;; corrects this issue, so we can rely on the version of the lua input to
|
||||
;; determine where the fennel.lua file got installed to.
|
||||
(let ((commit "03c1c95f2a79e45a9baf607f96a74c693b8b70f4")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "fennel")
|
||||
(version "1.0.0")
|
||||
(version (git-version "1.0.0" revision commit))
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://git.sr.ht/~technomancy/fennel")
|
||||
(commit version)))
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0d4rpf0f2aqxlca3kxrbhjjhf1knhiz8ccwlx8xid05mc16la70y"))))
|
||||
"1znp38h5q819gvcyl248zwvjsljfxdxdk8n82fnj6lyibiiqzgvx"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
|
||||
|
@ -1213,7 +1219,7 @@ enabled.")
|
|||
"Fennel is a programming language that brings together the speed,
|
||||
simplicity, and reach of Lua with the flexibility of a Lisp syntax and macro
|
||||
system.")
|
||||
(license license:expat)))
|
||||
(license license:expat))))
|
||||
|
||||
(define-public fnlfmt
|
||||
(package
|
||||
|
|
Reference in a new issue