gnu: fennel: Update to 1.2.0.
* gnu/packages/lua.scm (fennel): Update to 1.2.0. [arguments]: Migrate to gexps.master
parent
0ea62e84a7
commit
75d7317290
|
@ -1179,31 +1179,25 @@ enabled.")
|
||||||
(license license:boost1.0)))
|
(license license:boost1.0)))
|
||||||
|
|
||||||
(define-public fennel
|
(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
|
(package
|
||||||
(name "fennel")
|
(name "fennel")
|
||||||
(version (git-version "1.0.0" revision commit))
|
(version "1.2.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://git.sr.ht/~technomancy/fennel")
|
(url "https://git.sr.ht/~technomancy/fennel")
|
||||||
(commit commit)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1znp38h5q819gvcyl248zwvjsljfxdxdk8n82fnj6lyibiiqzgvx"))))
|
"0klqxhgc9s6rm2xbn2fyzw9nzdas65g84js7s69by0gv2jzalyad"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
|
(list #:make-flags #~(list (string-append "PREFIX="
|
||||||
#:tests? #t ; even on cross-build
|
(assoc-ref %outputs "out")))
|
||||||
|
#:tests? #t ;even on cross-build
|
||||||
#:test-target "test"
|
#:test-target "test"
|
||||||
#:phases
|
#:phases #~(modify-phases %standard-phases
|
||||||
(modify-phases %standard-phases
|
|
||||||
(delete 'configure)
|
(delete 'configure)
|
||||||
(add-after 'build 'patch-fennel
|
(add-after 'build 'patch-fennel
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
@ -1212,7 +1206,8 @@ enabled.")
|
||||||
(search-input-file inputs "/bin/lua")))))
|
(search-input-file inputs "/bin/lua")))))
|
||||||
(delete 'check)
|
(delete 'check)
|
||||||
(add-after 'install 'check
|
(add-after 'install 'check
|
||||||
(assoc-ref %standard-phases 'check)))))
|
(assoc-ref %standard-phases
|
||||||
|
'check)))))
|
||||||
(inputs (list lua))
|
(inputs (list lua))
|
||||||
(home-page "https://fennel-lang.org/")
|
(home-page "https://fennel-lang.org/")
|
||||||
(synopsis "Lisp that compiles to Lua")
|
(synopsis "Lisp that compiles to Lua")
|
||||||
|
@ -1220,7 +1215,7 @@ enabled.")
|
||||||
"Fennel is a programming language that brings together the speed,
|
"Fennel is a programming language that brings together the speed,
|
||||||
simplicity, and reach of Lua with the flexibility of a Lisp syntax and macro
|
simplicity, and reach of Lua with the flexibility of a Lisp syntax and macro
|
||||||
system.")
|
system.")
|
||||||
(license license:expat))))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public fnlfmt
|
(define-public fnlfmt
|
||||||
(package
|
(package
|
||||||
|
|
Reference in New Issue