adds checksums to important packages (#21782)

This commit is contained in:
ringabout
2023-05-04 15:10:49 +08:00
committed by GitHub
parent 44736d26cd
commit 34b78be396
2 changed files with 2 additions and 1 deletions

View File

@@ -186,7 +186,7 @@ proc bundleWinTools(args: string) =
proc bundleChecksums(latest: bool) =
let commit = if latest: "HEAD" else: ChecksumsStableCommit
cloneDependency(distDir, "https://github.com/nim-lang/checksums.git", commit)
cloneDependency(distDir, "https://github.com/nim-lang/checksums.git", commit, allowBundled = true)
proc zip(latest: bool; args: string) =
bundleChecksums(latest)

View File

@@ -50,6 +50,7 @@ pkg "bump", "nim c --gc:arc --path:. -r tests/tbump.nim", "https://github.com/di
pkg "c2nim", "nim c testsuite/tester.nim"
pkg "cascade"
pkg "cello", url = "https://github.com/nim-lang/cello", useHead = true
pkg "checksums"
pkg "chroma"
pkg "chronicles", "nim c -o:chr -r chronicles.nim", url = "https://github.com/nim-lang/nim-chronicles"
pkg "chronos", "nim c -r -d:release tests/testall"