-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2b839f8
commit 4510d04
Showing
5 changed files
with
53 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
-- -*- lua -*- | ||
|
||
package = "fennel" | ||
version = "0.4.2-1" | ||
source = { | ||
-- use URL to a pre-built release archive so the standalone launcher can be used | ||
url = "https://fennel-lang.org/downloads/Fennel-0.4.2.tgz", | ||
} | ||
description = { | ||
summary = "Lisp that compiles to Lua", | ||
detailed = [[ | ||
A lisp-like language that compiles to efficient Lua. Combine | ||
meta-programming with Lua.]], | ||
homepage = "https://fennel-lang.org/", | ||
license = "MIT" | ||
} | ||
dependencies = { | ||
"lua >= 5.1" | ||
} | ||
build = { | ||
type = "builtin", | ||
modules = { | ||
fennel = "fennel.lua", | ||
fennelview = "fennelview.lua", | ||
fennelfriend = "fennelfriend.lua", | ||
}, | ||
install = { | ||
bin = { | ||
fennel = "fennel" | ||
}, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters