-
Notifications
You must be signed in to change notification settings - Fork 0
chore: upgrade overlays #656
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -1,18 +1,18 @@ | ||
| { inputs }: | ||
| let | ||
| # Override clawdbot source to v2026.1.21 | ||
| # Override clawdbot source to v2026.1.22 | ||
| clawdbotSourceOverride = { | ||
| owner = "clawdbot"; | ||
| repo = "clawdbot"; | ||
| rev = "80c1edc3ff43b3bd3b7b545eed79f303d992f7dc"; | ||
| hash = "sha256-IsTNC79KXKL7ByBh7zUmH6qXx0YFdiQ4a4TI40C53U8="; | ||
| rev = "c48751a99c1aacea1092927ff85a09ee40ac374d"; | ||
| hash = "sha256-DJZulGqo2E7XvitR3kYKme9vqSfQyYs9I9fsBIpqQdQ="; | ||
| pnpmDepsHash = "sha256-tGzKcCiZNlWlKMNNFmxcFpIvO92G9myhM+OYaGea4hw="; | ||
| }; | ||
| # Override clawdbot-app to v2026.1.21 (fixes broken app package) | ||
| # Override clawdbot-app to v2026.1.22 (fixes broken app package) | ||
| clawdbotAppOverride = { | ||
| version = "2026.1.21"; | ||
| url = "https://github.com/clawdbot/clawdbot/releases/download/v2026.1.21/Clawdbot-2026.1.21.zip"; | ||
| hash = "sha256-EhGRakuN0dhEkXvrOd21t79odf4T2jY7oKFRubLqGbI="; | ||
| version = "2026.1.22"; | ||
| url = "https://github.com/clawdbot/clawdbot/releases/download/v2026.1.22/Clawdbot-2026.1.22.zip"; | ||
| hash = "sha256-IXb+WNrSqH80mYOR62rRK+mJUhReJ+CZVPNFefgkcao="; | ||
| }; | ||
| in | ||
| [ | ||
|
|
@@ -22,7 +22,7 @@ in | |
| ( | ||
| final: prev: | ||
| let | ||
| clawdbotVersion = "2026.1.21"; | ||
| clawdbotVersion = "2026.1.22"; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| basePkgs = import "${inputs.nix-clawdbot}/nix/packages" { | ||
| pkgs = prev; | ||
| sourceInfo = clawdbotSourceOverride; | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To improve maintainability and reduce redundancy, you could define the
clawdbotversion in a single variable at the top-levelletblock. This would make future version bumps easier and less error-prone.This change would require moving
clawdbotVersionfrom the innerletblock (line 25) to the top-levelletblock, and then using it for the version and URL.Note: Applying this refactoring will require updating
scripts/upgrade-overlays.shto modify the single version variable instead of using multiplesedcommands.