lean4-htt/examples/git/package.lean
2021-09-25 18:38:42 -04:00

17 lines
350 B
Text

import Lake.Package
open Lake System
def package : PackageConfig := {
name := "gitHello"
dependencies := [
{
name := "hello",
src := Source.git
"https://github.com/tydeu/lean4-lake.git"
"7a230da4073dd979ca521e81dcacdacd930c36d4"
(branch := none)
dir := FilePath.mk "examples" / "hello"
}
]
}