basecamp: 0.7.2 -> 0.8.0-rc.1, vibetyper: 1.4.0 -> 1.4.1
basecamp: bump flake input to github:basecamp/basecamp-cli/v0.8.0-rc.1. The rc.1 tag ships a stale nix/package.nix whose vendorHash does not match the tagged go.sum (buildGoModule FOD fails) and whose `version` was not bumped (still reads 0.7.2). Override both on the pass-through so the input builds and reports 0.8.0-rc.1. Drop the override back to a plain pass-through once upstream fixes package.nix for the 0.8.0 final. vibetyper: 1.4.0 -> 1.4.1 with refreshed AppImage sha256.
This commit is contained in:
+14
-1
@@ -37,7 +37,20 @@ in {
|
||||
# ── Pass-through packages ──────────────────────────────────────────
|
||||
# Imported directly from flake inputs. No local modifications.
|
||||
|
||||
basecamp = inputs.basecamp.packages.${system}.default;
|
||||
# basecamp: tracked at github:basecamp/basecamp-cli/v0.8.0-rc.1.
|
||||
# The rc.1 tag ships a stale nix/package.nix:
|
||||
# - vendorHash does not match the tagged go.sum (buildGoModule FOD fails)
|
||||
# - `version` was not bumped and still reads "0.7.2"
|
||||
# We override both here so the input builds and reports the rc.1 version.
|
||||
# When upstream fixes package.nix (expected for the 0.8.0 final), drop this
|
||||
# override back to the plain pass-through.
|
||||
basecamp = inputs.basecamp.packages.${system}.default.overrideAttrs (_: {
|
||||
version = "0.8.0-rc.1";
|
||||
vendorHash = "sha256-m1UF/Ga9C9GJF0JtZMXFOX88chb+f279/aoAaiwfxvg=";
|
||||
# src stays the flake input (lib.cleanSource ./.. pinned by flake.lock to
|
||||
# rc.1) — only the version label that upstream forgot to bump is corrected.
|
||||
__intentionallyOverridingVersion = true;
|
||||
});
|
||||
openspec = inputs.openspec.packages.${system}.default;
|
||||
opencode-desktop = inputs.opencode.packages.${system}.opencode-desktop;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user