diff options
author | Juan M Gómez <info@jmgomez.me> | 2024-05-23 20:07:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-23 21:07:36 +0200 |
commit | afa5c5a03c301389cd9dc84afd56195b4909c68c (patch) | |
tree | bd6ef8b6440f7551ab19dcb4c997d547eff62b07 | |
parent | d837d32fd571eb701b380f68c88231ff08ee124a (diff) | |
download | Nim-afa5c5a03c301389cd9dc84afd56195b4909c68c.tar.gz |
Updates nimble (#23601)
-rw-r--r-- | koch.nim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/koch.nim b/koch.nim index f8e8980d2..089f8e1ab 100644 --- a/koch.nim +++ b/koch.nim @@ -11,7 +11,7 @@ const # examples of possible values for repos: Head, ea82b54 - NimbleStableCommit = "39b61c5d85afffd53aa404ac9126419ae1bd8d67" # master + NimbleStableCommit = "f8bd7b5fa6ea7a583b411b5959b06e6b5eb23667" # master AtlasStableCommit = "5faec3e9a33afe99a7d22377dd1b45a5391f5504" ChecksumsStableCommit = "025bcca3915a1b9f19878cea12ad68f9884648fc" SatStableCommit = "faf1617f44d7632ee9601ebc13887644925dcc01" @@ -160,6 +160,8 @@ proc bundleNimbleExe(latest: bool, args: string) = commit = commit, allowBundled = true) cloneDependency(distDir / "nimble" / distDir, "https://github.com/nim-lang/checksums.git", commit = ChecksumsStableCommit, allowBundled = true) # or copy it from dist? + cloneDependency(distDir / "nimble" / distDir, "https://github.com/nim-lang/sat.git", + commit = SatStableCommit, allowBundled = true) # installer.ini expects it under $nim/bin nimCompile("dist/nimble/src/nimble.nim", options = "-d:release -d:nimNimbleBootstrap --noNimblePath " & args) |