Last active
March 22, 2026 08:11
-
-
Save kesor/3f42978fb2a495c10a7dd7b29500cd53 to your computer and use it in GitHub Desktop.
nix package version bump
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
| { | |
| fetchNpmDeps, | |
| fetchFromGitHub, | |
| pi-coding-agent, | |
| ... | |
| }: | |
| let | |
| version = "0.61.1"; | |
| npmDepsHash = "sha256-nU2A+Q8PzVbjN7H+KAIFVbvETUa9BCO0czl5Yikc7gY="; | |
| src = fetchFromGitHub { | |
| owner = "badlogic"; | |
| repo = "pi-mono"; | |
| tag = "v${version}"; | |
| hash = "sha256-UvYd1AzwC59t+vR0wvrD4rVAcm1xoJAEWmN25NF7YcY="; | |
| }; | |
| in | |
| pi-coding-agent.overrideAttrs (old: { | |
| inherit version src npmDepsHash; | |
| npmDeps = fetchNpmDeps { | |
| inherit src; | |
| hash = npmDepsHash; | |
| }; | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment