4 Commits
Author SHA1 Message Date
wymiller 49a7431945 Merge pull request '⬆️ Sable upgrade' (#15) from sable-upgrade into master
Publish packages to Attic / publish (push) Successful in 8m27s
Reviewed-on: #15
2026-09-07 15:24:04 -05:00
wymiller 99fccdc256 mod: upgrade sable-web from 1.14 to 1.21 2026-09-06 16:15:49 -04:00
wymiller 47f9558533 mod: fix gh-dash overlay
Publish packages to Attic / publish (push) Successful in 26m58s
2026-09-06 15:20:04 -04:00
wymiller ac949bcb77 mod: update publish workflow
Publish packages to Attic / publish (push) Failing after 8m50s
2026-09-06 15:09:03 -04:00
3 changed files with 80 additions and 48 deletions
+5
View File
@@ -70,6 +70,11 @@ jobs:
NIXPKGS_ALLOW_UNFREE=1 nix build --impure --sandbox --no-sandbox-fallback --accept-flake-config --no-link --print-out-paths -L \ NIXPKGS_ALLOW_UNFREE=1 nix build --impure --sandbox --no-sandbox-fallback --accept-flake-config --no-link --print-out-paths -L \
".#packages.${system}.atuinLatest" \ ".#packages.${system}.atuinLatest" \
".#packages.${system}.cliampLatest" \ ".#packages.${system}.cliampLatest" \
".#packages.${system}.lazygitLatest" \
".#packages.${system}.ghDashLatest" \
".#packages.${system}.diffNavLatest" \
".#packages.${system}.k9sLatest" \
".#packages.${system}.sable-web" \
".#packages.${system}.musicpresence" \ ".#packages.${system}.musicpresence" \
".#packages.${system}.vintage-story" \ ".#packages.${system}.vintage-story" \
".#packages.${system}.swaytreesave" \ ".#packages.${system}.swaytreesave" \
+2 -2
View File
@@ -12,10 +12,10 @@ in {
owner = "dlvhdr"; owner = "dlvhdr";
repo = "gh-dash"; repo = "gh-dash";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-FUb4zrGT0L7S1O5EcOCop4n0zlx1ODsANzBcEl9bvOU="; hash = "sha256-3iUBuMvA2Xh7UjTiFNEs3tuZMCnSt/bIhTSEDD92yCU=";
}; };
vendorHash = "sha256-3iUBuMvA2Xh7UjTiFNEs3tuZMCnSt/bIhTSEDD92yCU="; vendorHash = "sha256-Teu+8jiZE2gZ+0ErKsunhotY9W4Hjg6PAeFkFLgESIk=";
doCheck = false; doCheck = false;
checkFlags = [ checkFlags = [
"-skip=TestFullOutput" "-skip=TestFullOutput"
+73 -46
View File
@@ -7,54 +7,81 @@
nodejs_24, nodejs_24,
fetchFromGitHub, fetchFromGitHub,
}: }:
buildNpmPackage (finalAttrs: buildNpmPackage (
let finalAttrs:
pnpm = pnpm_10.override { let
pnpm = pnpm_10.override {
nodejs = nodejs_24;
};
matrixrtcSrc = fetchFromGitHub {
owner = "SableClient";
repo = "matrix-rtc";
rev = "519fe6b863cfac78700f4e2b1748649103bb8a8d";
hash = "sha256-n5f7529RdRxY8/a43Xkgrhg4yRz5aNgfoZqWrB7kvak=";
};
livekitMobileSrc = fetchFromGitHub {
owner = "SableClient";
repo = "tauri-plugin-livekit-mobile";
rev = "c6f0d02ab3da1174535bc1dc8e598a2e6873f977";
hash = "sha256-ZPx6Ic+Gkvzg9LXYP9BaQALzOrvLCcQHOms8U3VfnU0=";
};
in
{
pname = "sable-unwrapped";
version = "1.21.0";
src = fetchFromGitHub {
owner = "SableClient";
repo = "Sable";
tag = "v${finalAttrs.version}";
hash = "sha256-vYoKNflV4vdJpgYVxYCxAQhvqDh1Qf+7qgIFHxriTTU=";
};
nodejs = nodejs_24; nodejs = nodejs_24;
};
in {
pname = "sable-unwrapped";
version = "1.14.0";
src = fetchFromGitHub { nativeBuildInputs = [ pnpm ];
owner = "SableClient"; npmConfigHook = pnpmConfigHook;
repo = "Sable";
tag = "v${finalAttrs.version}";
hash = "sha256-zoGKs0pm9m42JrTNAdU33LP139JlVz3RZnkTyY0aiqY=";
};
nodejs = nodejs_24; npmDeps = finalAttrs.pnpmDeps;
pnpmDeps = fetchPnpmDeps {
inherit (finalAttrs) pname version src;
inherit pnpm;
fetcherVersion = 3;
hash = "sha256-tzIU/5DQ4SpLABKOt6/Z2aD2d6nVt+MJvY7vHHnO4No=";
};
nativeBuildInputs = [ pnpm ]; npmInstallFlags = [
npmConfigHook = pnpmConfigHook; "--ignore-scripts"
npmDeps = finalAttrs.pnpmDeps;
pnpmDeps = fetchPnpmDeps {
inherit (finalAttrs) pname version src;
inherit pnpm;
fetcherVersion = 3;
hash = "sha256-2GwUz0jsuVKQZyeidM0F4rDzijm9AFcAxN7x/m/b3Is=";
};
npmInstallFlags = [
"--ignore-scripts"
];
installPhase = ''
runHook preInstall
cp -r dist $out
runHook postInstall
'';
meta = {
description = "An almost stable Matrix client";
homepage = "https://app.sable.moe/";
maintainers = with lib.maintainers; [
wymillerlinux
]; ];
license = lib.licenses.agpl3Only;
platforms = lib.platforms.all; preBuild = ''
}; cp -r --no-preserve=mode ${matrixrtcSrc}/. node_modules/@sableclient/matrixrtc/
}) pnpm exec tsc -p node_modules/@sableclient/matrixrtc/tsconfig.build.json
cp -r --no-preserve=mode ${livekitMobileSrc}/. node_modules/@sableclient/tauri-plugin-livekit-mobile/
pnpm exec tsc \
-p node_modules/@sableclient/tauri-plugin-livekit-mobile/tsconfig.json \
--noEmit false \
--declaration \
--rootDir node_modules/@sableclient/tauri-plugin-livekit-mobile/guest-js \
--outDir node_modules/@sableclient/tauri-plugin-livekit-mobile/dist-js
'';
installPhase = ''
runHook preInstall
cp -r dist $out
runHook postInstall
'';
meta = {
description = "An almost stable Matrix client";
homepage = "https://app.sable.moe/";
maintainers = with lib.maintainers; [
wymillerlinux
];
license = lib.licenses.agpl3Only;
platforms = lib.platforms.all;
};
}
)