Compare commits

4 Commits
Author SHA1 Message Date
m3tam3re 69fce234a8 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.
2026-08-02 13:35:26 +02:00
m3tam3re 09d9c1503b n8n: 2.32.6 -> 2.32.7 2026-08-02 13:13:31 +02:00
m3tam3re 1cbde05767 fix(openwork): use renamed com.differentai.openwork.desktop from AppImage
Upstream renamed the desktop file from openwork.desktop to
com.differentai.openwork.desktop (reverse-DNS), causing the build to
fail with "cannot stat '.../openwork.desktop'". Source the new name
while keeping the install destination as openwork.desktop so icon and
Exec substitution stay unchanged.
2026-07-30 09:40:55 +02:00
m3tam3re e3ebb76b1c fix: basecam rollback as new rc version does not have a source hash 2026-07-30 09:19:05 +02:00
6 changed files with 24 additions and 10 deletions
Generated
+4 -3
View File
@@ -23,15 +23,16 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1785368733, "lastModified": 1785348116,
"narHash": "sha256-GQyRe3KNrQJ1+zyv8w9LUtbix85OBafPXaL7wcVOM4A=", "narHash": "sha256-AVycTcomtfvQJ/AHvMg5xu7lVoOzDXxjN+pV7mqUIQ4=",
"owner": "basecamp", "owner": "basecamp",
"repo": "basecamp-cli", "repo": "basecamp-cli",
"rev": "b9ada46979e1726b3b4402d0b10be5b3e6d88ea7", "rev": "e1059fb123a03295ce6176272e4bbaf43d7971c6",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "basecamp", "owner": "basecamp",
"ref": "v0.8.0-rc.1",
"repo": "basecamp-cli", "repo": "basecamp-cli",
"type": "github" "type": "github"
} }
+1 -1
View File
@@ -6,7 +6,7 @@
nixpkgs-master.url = "github:NixOS/nixpkgs/master"; nixpkgs-master.url = "github:NixOS/nixpkgs/master";
basecamp = { basecamp = {
url = "github:basecamp/basecamp-cli"; url = "github:basecamp/basecamp-cli/v0.8.0-rc.1";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
+2 -2
View File
@@ -6,13 +6,13 @@
# been removed. # been removed.
in in
prev.n8n.overrideAttrs (finalAttrs: previousAttrs: { prev.n8n.overrideAttrs (finalAttrs: previousAttrs: {
version = "2.32.6"; version = "2.32.7";
src = prev.fetchFromGitHub { src = prev.fetchFromGitHub {
owner = "n8n-io"; owner = "n8n-io";
repo = "n8n"; repo = "n8n";
tag = "n8n@${finalAttrs.version}"; tag = "n8n@${finalAttrs.version}";
hash = "sha256-wWm6vGyJ2I2SBU38gRGaZG2FR5FBxH6V/sWQwn5B4Ac="; hash = "sha256-Lyz0k5LD+lVPt5yeNUm08p9x2xqRIqW4AsMp3IGZGdc=";
}; };
pnpmDeps = prev.fetchPnpmDeps { pnpmDeps = prev.fetchPnpmDeps {
+14 -1
View File
@@ -37,7 +37,20 @@ in {
# ── Pass-through packages ────────────────────────────────────────── # ── Pass-through packages ──────────────────────────────────────────
# Imported directly from flake inputs. No local modifications. # 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; openspec = inputs.openspec.packages.${system}.default;
opencode-desktop = inputs.opencode.packages.${system}.opencode-desktop; opencode-desktop = inputs.opencode.packages.${system}.opencode-desktop;
} }
+1 -1
View File
@@ -25,7 +25,7 @@ in
inherit pname version src; inherit pname version src;
extraInstallCommands = '' extraInstallCommands = ''
install -m 444 -D ${appimageContents}/openwork.desktop \ install -m 444 -D ${appimageContents}/com.differentai.openwork.desktop \
$out/share/applications/openwork.desktop $out/share/applications/openwork.desktop
substituteInPlace $out/share/applications/openwork.desktop \ substituteInPlace $out/share/applications/openwork.desktop \
--replace-fail 'Exec=AppRun %U' 'Exec=${pname} %U' --replace-fail 'Exec=AppRun %U' 'Exec=${pname} %U'
+2 -2
View File
@@ -6,12 +6,12 @@
makeWrapper, makeWrapper,
}: let }: let
pname = "vibetyper"; pname = "vibetyper";
version = "1.4.0"; version = "1.4.1";
# Upstream publishes to an unversioned URL — ./update.sh watches Last-Modified # Upstream publishes to an unversioned URL — ./update.sh watches Last-Modified
# and refreshes the sha256 when the binary changes. Bump `version` manually. # and refreshes the sha256 when the binary changes. Bump `version` manually.
src = fetchurl { src = fetchurl {
url = "https://cdn.vibetyper.com/releases/linux/VibeTyper.AppImage"; url = "https://cdn.vibetyper.com/releases/linux/VibeTyper.AppImage";
sha256 = "sha256-p4MOTKbEMIUhwhyGSE/l6ucwpPjeTELJ0lX4TXrKf2Y="; sha256 = "sha256-mhXWEKvDgzxJrqIjzUWpfPM8qwKf6YYLsbjqqjtEk5s=";
}; };
appimageContents = appimageTools.extractType2 {inherit pname version src;}; appimageContents = appimageTools.extractType2 {inherit pname version src;};
in in